aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/modelviews/listview/dynamiclist.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/quick/modelviews/listview/dynamiclist.qml')
-rw-r--r--examples/quick/modelviews/listview/dynamiclist.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/quick/modelviews/listview/dynamiclist.qml b/examples/quick/modelviews/listview/dynamiclist.qml
index 0bd4e05cdc..12b1e74fde 100644
--- a/examples/quick/modelviews/listview/dynamiclist.qml
+++ b/examples/quick/modelviews/listview/dynamiclist.qml
@@ -88,7 +88,7 @@ Rectangle {
Item {
//! [0]
id: delegateItem
- width: listView.width; height: 100
+ width: listView.width; height: 80
clip: true
Column {
@@ -173,7 +173,7 @@ Rectangle {
//! [1]
ListView.onAdd: SequentialAnimation {
PropertyAction { target: delegateItem; property: "height"; value: 0 }
- NumberAnimation { target: delegateItem; property: "height"; to: 55; duration: 250; easing.type: Easing.InOutQuad }
+ NumberAnimation { target: delegateItem; property: "height"; to: 80; duration: 250; easing.type: Easing.InOutQuad }
}
ListView.onRemove: SequentialAnimation {