aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quickcontrols2/gallery/pages/DelegatePage.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/quickcontrols2/gallery/pages/DelegatePage.qml')
-rw-r--r--examples/quickcontrols2/gallery/pages/DelegatePage.qml8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/quickcontrols2/gallery/pages/DelegatePage.qml b/examples/quickcontrols2/gallery/pages/DelegatePage.qml
index c3fa06c5..3d175fd8 100644
--- a/examples/quickcontrols2/gallery/pages/DelegatePage.qml
+++ b/examples/quickcontrols2/gallery/pages/DelegatePage.qml
@@ -70,13 +70,13 @@ Pane {
text: labelText
width: parent.width
- onClicked: if (exposure.active) view.model.remove(ourIndex)
+ onClicked: if (swipe.complete) view.model.remove(ourIndex)
Component {
id: removeComponent
Rectangle {
- color: swipeDelegate.exposed && swipeDelegate.pressed ? "#333" : "#444"
+ color: swipeDelegate.swipe.complete && swipeDelegate.pressed ? "#333" : "#444"
width: parent.width
height: parent.height
clip: true
@@ -90,8 +90,8 @@ Pane {
}
}
- exposure.left: removeComponent
- exposure.right: removeComponent
+ swipe.left: removeComponent
+ swipe.right: removeComponent
}
}