summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorYann Bodson <yann.bodson@nokia.com>2009-10-26 05:56:49 (GMT)
committerYann Bodson <yann.bodson@nokia.com>2009-10-26 05:56:49 (GMT)
commit28cd6e0ed60df6f86a9d736b71ed00e26c224cdb (patch)
tree89a8973be8e5f1c085d52ba7944ce1dbf8301646 /examples
parentbace980199f6578ef453c57128fe7f0659bfeddf (diff)
downloadQt-28cd6e0ed60df6f86a9d736b71ed00e26c224cdb.zip
Qt-28cd6e0ed60df6f86a9d736b71ed00e26c224cdb.tar.gz
Qt-28cd6e0ed60df6f86a9d736b71ed00e26c224cdb.tar.bz2
fix anchors
Diffstat (limited to 'examples')
-rw-r--r--examples/declarative/animation/easing.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/declarative/animation/easing.qml b/examples/declarative/animation/easing.qml
index 9e0a0d6..59e9b17 100644
--- a/examples/declarative/animation/easing.qml
+++ b/examples/declarative/animation/easing.qml
@@ -92,7 +92,7 @@ Rectangle {
anchors.fill: parent; viewportHeight: layout.height
Column {
id: layout
- anchors.left: window.left; anchors.right: window.right
+ anchors.left: parent.left; anchors.right: parent.right
Repeater { model: easingTypes; delegate: delegate }
}
}