diff options
Diffstat (limited to 'gui/src')
| -rw-r--r-- | gui/src/main/user-interface.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gui/src/main/user-interface.ts b/gui/src/main/user-interface.ts index 78e88f0f14..aa3e8b07f5 100644 --- a/gui/src/main/user-interface.ts +++ b/gui/src/main/user-interface.ts @@ -259,6 +259,7 @@ export default class UserInterface implements WindowControllerDelegate { minimizable: unpinnedWindow, closable: unpinnedWindow, transparent: !unpinnedWindow, + hiddenInMissionControl: !unpinnedWindow, }); // make the window visible on all workspaces and prevent the icon from showing in the dock @@ -266,7 +267,7 @@ export default class UserInterface implements WindowControllerDelegate { if (unpinnedWindow) { void app.dock.show(); } else { - appWindow.setVisibleOnAllWorkspaces(true); + appWindow.setVisibleOnAllWorkspaces(true, { visibleOnFullScreen: true }); app.dock.hide(); } |
