diff --git a/examples/quick/pointerhandlers/fakeFlickable.qml b/examples/quick/pointerhandlers/fakeFlickable.qml index 2234a7793a..a601a5fbae 100644 --- a/examples/quick/pointerhandlers/fakeFlickable.qml +++ b/examples/quick/pointerhandlers/fakeFlickable.qml @@ -136,13 +136,13 @@ Rectangle { Row { id: buttonRow spacing: 4 - TapHandlerButton { + Button { text: "⭯" - onClicked: ff.rotation -= 45 + onTapped: ff.rotation -= 45 } - TapHandlerButton { + Button { text: "⭮" - onClicked: ff.rotation += 45 + onTapped: ff.rotation += 45 } } }