diff --git a/discover/qml/DiscoverPage.qml b/discover/qml/DiscoverPage.qml --- a/discover/qml/DiscoverPage.qml +++ b/discover/qml/DiscoverPage.qml @@ -24,23 +24,6 @@ { id: root - readonly property var s1: Shortcut { - sequence: StandardKey.MoveToNextPage - enabled: root.isCurrentPage - onActivated: { - root.flickable.contentY = Math.min(root.flickable.contentHeight - root.flickable.height, - root.flickable.contentY + root.flickable.height); - } - } - - readonly property var s2: Shortcut { - sequence: StandardKey.MoveToPreviousPage - enabled: root.isCurrentPage - onActivated: { - root.flickable.contentY = Math.max(0, root.flickable.contentY - root.flickable.height); - } - } - readonly property var sClose: Shortcut { sequence: StandardKey.Cancel enabled: root.isCurrentPage && applicationWindow().pageStack.depth>1