diff options
author | Yann Bodson <yann.bodson@nokia.com> | 2010-08-26 05:43:53 (GMT) |
---|---|---|
committer | Yann Bodson <yann.bodson@nokia.com> | 2010-08-26 05:43:53 (GMT) |
commit | f936a199e44a8d443240368f748f7be87cffc186 (patch) | |
tree | d0efc9bc362ab0630b96d2da9dffcfef211cdde7 /examples/declarative/animation/states/states.qml | |
parent | 58a76965e20c4c66ab2dc9cf73aa72b1cfddfbeb (diff) | |
download | Qt-f936a199e44a8d443240368f748f7be87cffc186.zip Qt-f936a199e44a8d443240368f748f7be87cffc186.tar.gz Qt-f936a199e44a8d443240368f748f7be87cffc186.tar.bz2 |
Make declarative examples a bit more qt-like.
Diffstat (limited to 'examples/declarative/animation/states/states.qml')
-rw-r--r-- | examples/declarative/animation/states/states.qml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/declarative/animation/states/states.qml b/examples/declarative/animation/states/states.qml index 77101d0..34cdae3 100644 --- a/examples/declarative/animation/states/states.qml +++ b/examples/declarative/animation/states/states.qml @@ -48,14 +48,14 @@ Rectangle { Image { id: userIcon x: topLeftRect.x; y: topLeftRect.y - source: "user.png" + source: "qt-logo.png" } Rectangle { id: topLeftRect anchors { left: parent.left; top: parent.top; leftMargin: 10; topMargin: 20 } - width: 64; height: 64 + width: 46; height: 54 color: "Transparent"; border.color: "Gray"; radius: 6 // Clicking in here sets the state to the default state, returning the image to @@ -67,7 +67,7 @@ Rectangle { id: middleRightRect anchors { right: parent.right; verticalCenter: parent.verticalCenter; rightMargin: 20 } - width: 64; height: 64 + width: 46; height: 54 color: "Transparent"; border.color: "Gray"; radius: 6 // Clicking in here sets the state to 'middleRight' @@ -78,7 +78,7 @@ Rectangle { id: bottomLeftRect anchors { left: parent.left; bottom: parent.bottom; leftMargin: 10; bottomMargin: 20 } - width: 64; height: 64 + width: 46; height: 54 color: "Transparent"; border.color: "Gray"; radius: 6 // Clicking in here sets the state to 'bottomLeft' |