Fix pointerhandlers/fakeFlickable example

TapHandlerButton is not in this example: we just call it Button.
Amends 8503f884bb

Pick-to: 6.2
Change-Id: I49bc6081f05642cd938a257c14c10497bfafb8a8
Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
This commit is contained in:
Shawn Rutledge 2021-10-26 11:52:22 +02:00
parent e14d13bea6
commit c61cfa8487
1 changed files with 4 additions and 4 deletions

View File

@ -136,13 +136,13 @@ Rectangle {
Row { Row {
id: buttonRow id: buttonRow
spacing: 4 spacing: 4
TapHandlerButton { Button {
text: "⭯" text: "⭯"
onClicked: ff.rotation -= 45 onTapped: ff.rotation -= 45
} }
TapHandlerButton { Button {
text: "⭮" text: "⭮"
onClicked: ff.rotation += 45 onTapped: ff.rotation += 45
} }
} }
} }