|
@@ -28,12 +28,20 @@ KonvergoWindow
|
|
|
action_undo.enabled = enable
|
|
|
action_redo.enabled = enable
|
|
|
action_selectall.enabled = enable
|
|
|
- action_fullscreen.enabled = enable
|
|
|
+ action_fullscreen_win.enabled = enable
|
|
|
+ action_fullscreen_mac.enabled = enable
|
|
|
}
|
|
|
|
|
|
Action
|
|
|
{
|
|
|
- id: action_fullscreen
|
|
|
+ id: action_debug_overlay
|
|
|
+ shortcut: "Ctrl+Shift+D"
|
|
|
+ onTriggered: mainWindow.toggleDebug()
|
|
|
+ }
|
|
|
+
|
|
|
+ Action
|
|
|
+ {
|
|
|
+ id: action_fullscreen_win
|
|
|
shortcut: "F11"
|
|
|
onTriggered:
|
|
|
{
|
|
@@ -41,6 +49,16 @@ KonvergoWindow
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ Action
|
|
|
+ {
|
|
|
+ id: action_fullscreen_mac
|
|
|
+ shortcut: "Ctrl+Meta+F"
|
|
|
+ onTriggered:
|
|
|
+ {
|
|
|
+ mainWindow.toggleFullscreen()
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
Action
|
|
|
{
|
|
|
id: action_switchmode
|