diff options
author | Martin Jones <martin.jones@nokia.com> | 2009-09-09 05:14:50 (GMT) |
---|---|---|
committer | Martin Jones <martin.jones@nokia.com> | 2009-09-09 05:14:50 (GMT) |
commit | d03ed1d1ff45ff484f35ace9d90f6c84dd73aa21 (patch) | |
tree | 954527301ce27777e5ec26f0b9c9abaee07e5481 /demos/declarative | |
parent | 6878a0b7c507d21366cacee0a09bafeb81726d82 (diff) | |
parent | a57af1d6856ffa3a50eb1e0cdd1653b7b4ebdb41 (diff) | |
download | Qt-d03ed1d1ff45ff484f35ace9d90f6c84dd73aa21.zip Qt-d03ed1d1ff45ff484f35ace9d90f6c84dd73aa21.tar.gz Qt-d03ed1d1ff45ff484f35ace9d90f6c84dd73aa21.tar.bz2 |
Merge branch 'kinetic-declarativeui' of git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
Diffstat (limited to 'demos/declarative')
-rw-r--r-- | demos/declarative/twitter/content/AuthView.qml | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/demos/declarative/twitter/content/AuthView.qml b/demos/declarative/twitter/content/AuthView.qml index 7d0d865..febee94 100644 --- a/demos/declarative/twitter/content/AuthView.qml +++ b/demos/declarative/twitter/content/AuthView.qml @@ -5,10 +5,9 @@ import "../../flickr/mobile" Item { id: wrapper Column { - width: childrenRect.width; height:childrenRect.height; anchors.centerIn: parent + anchors.centerIn: parent spacing: 20 Row{ - width: childrenRect.width; height:childrenRect.height; spacing: 4 Text { width: 100 @@ -39,7 +38,6 @@ Item { } } Row{ - width: childrenRect.width; height:childrenRect.height; spacing: 4 Text { width: 100 @@ -65,8 +63,8 @@ Item { } } Item{ - width: childrenRect.width; anchors.horizontalCenter: parent.horizontalCenter - height: childrenRect.height + width: childrenRect.width; height:childrenRect.height; + anchors.horizontalCenter: parent.horizontalCenter Button { x: 10 width: 100 |