diff --git a/src/controls/ApplicationWindow.qml b/src/controls/ApplicationWindow.qml --- a/src/controls/ApplicationWindow.qml +++ b/src/controls/ApplicationWindow.qml @@ -176,6 +176,14 @@ sequence: StandardKey.Back onActivated: __pageStack.goBack(); } + Shortcut { + sequence: StandardKey.Cancel + onActivated: { + if (__pageStack.depth > 1) { + __pageStack.pop(); + } + } + } focus: true }