Browse Source

Fix F11 for fullscreen.

Ian Walton 4 years ago
parent
commit
abfd933e5b
1 changed files with 1 additions and 11 deletions
  1. 1 11
      src/ui/webview.qml

+ 1 - 11
src/ui/webview.qml

@@ -19,23 +19,13 @@ KonvergoWindow
       web.triggerWebAction(action)
   }
 
-  Action
-  {
-    enabled: mainWindow.webDesktopMode
-    shortcut: {
-      if (components.system.isMacos) return "Ctrl+Shift+F";
-      return "F11";
-    }
-    onTriggered: mainWindow.toggleWebMode()
-  }
-
   Action
   {
     enabled: mainWindow.webDesktopMode
     shortcut:
     {
       if (components.system.isMacos) return "Ctrl+Meta+F"
-      return "Shift+F11"
+      return "F11"
     }
     onTriggered: mainWindow.toggleFullscreen()
   }