diff options
author | Joona Petrell <joona.t.petrell@nokia.com> | 2010-09-21 07:13:09 (GMT) |
---|---|---|
committer | Joona Petrell <joona.t.petrell@nokia.com> | 2010-09-21 07:13:09 (GMT) |
commit | 8b97765d6e7cf207fb3a5ea8ac4fc5adbbcd3610 (patch) | |
tree | 7dad41cd7a33aaa1407e260049c846ebfa403a55 /examples/declarative/animation/easing/easing.qml | |
parent | 46e49547f8e4614cd504b0af0d52d4e2768b57c3 (diff) | |
download | Qt-8b97765d6e7cf207fb3a5ea8ac4fc5adbbcd3610.zip Qt-8b97765d6e7cf207fb3a5ea8ac4fc5adbbcd3610.tar.gz Qt-8b97765d6e7cf207fb3a5ea8ac4fc5adbbcd3610.tar.bz2 |
Fix easing example having wrong contentHeight
Diffstat (limited to 'examples/declarative/animation/easing/easing.qml')
-rw-r--r-- | examples/declarative/animation/easing/easing.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/declarative/animation/easing/easing.qml b/examples/declarative/animation/easing/easing.qml index ffb129d..9349a25 100644 --- a/examples/declarative/animation/easing/easing.qml +++ b/examples/declarative/animation/easing/easing.qml @@ -137,7 +137,7 @@ Rectangle { Flickable { anchors.fill: parent - contentHeight: layout.height + contentHeight: layout.height+50 Rectangle { id: titlePane color: "#444444" |