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:
parent
e14d13bea6
commit
c61cfa8487
|
@ -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
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue