Browse Source

Stop Esc key from exiting full screen mode

Sophist 1 year ago
parent
commit
7afa2fc94a
1 changed files with 2 additions and 1 deletions
  1. 2 1
      resources/qml/Actions.qml

+ 2 - 1
resources/qml/Actions.qml

@@ -109,7 +109,8 @@ Item
     Action
     {
         id: exitFullScreenAction
-        shortcut: StandardKey.Cancel
+        // Stop Esc key from exiting full screen mode
+        // shortcut: StandardKey.Cancel
         text: catalog.i18nc("@action:inmenu", "Exit Full Screen")
         icon.name: "view-fullscreen"
     }