Merge remote-tracking branch 'dejvinofork/issue_236' Fixes #94

This commit is contained in:
Maze 2022-01-05 16:06:24 +01:00
commit 3aa100981e

View File

@ -16,11 +16,13 @@ Item {
implicitHeight: parent ? parent.height : 0
TapHandler {
acceptedPointerTypes: PointerDevice.GenericPointer
acceptedButtons: Qt.BackButton
onTapped: root.pageLoader.moveThroughHistory(1)
}
TapHandler {
acceptedPointerTypes: PointerDevice.GenericPointer
acceptedButtons: Qt.ForwardButton
onTapped: root.pageLoader.moveThroughHistory(-1)
}