From fe75f9b12ee43a12c2409e6f21d390377d5d005b Mon Sep 17 00:00:00 2001 From: Cosimo Cecchi Date: Wed, 14 Nov 2018 20:27:59 -0800 Subject: [PATCH] workspace: do not show inactive hack session windows They should not appear as separate windows. --- js/ui/workspace.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/workspace.js b/js/ui/workspace.js index 6f61cb14b8..d58dfa534a 100644 --- a/js/ui/workspace.js +++ b/js/ui/workspace.js @@ -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