Skip to content

Commit

Permalink
workspace: do not show inactive hack session windows
Browse files Browse the repository at this point in the history
They should not appear as separate windows.
  • Loading branch information
cosimoc committed Nov 15, 2018
1 parent caaf10a commit fe75f9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/ui/workspace.js
Expand Up @@ -1826,7 +1826,7 @@ var Workspace = new Lang.Class({

// Tests if @win should be shown in the Overview
_isOverviewWindow : function (win) {
return !win.get_meta_window().skip_taskbar;
return !win.get_meta_window().skip_taskbar && !win.get_meta_window()._hackIsInactiveWindow;
},

// Create a clone of a (non-desktop) window and add it to the window list
Expand Down

0 comments on commit fe75f9b

Please sign in to comment.