From 95b6cd673d77f489610892bff2cf018127da35cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ole=20J=C3=B8rgen=20Br=C3=B8nner?= Date: Sat, 24 Aug 2019 10:02:54 +0200 Subject: [PATCH] liveAltTab: only show `TabList.NORMAL` windows Non-normal windows are unfocusable or request `mw.skip_taskbar` --- liveAltTab.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/liveAltTab.js b/liveAltTab.js index 7436a4e..b4ac67b 100644 --- a/liveAltTab.js +++ b/liveAltTab.js @@ -23,7 +23,7 @@ class LiveAltTab extends AltTab.WindowSwitcherPopup { _getWindowList(reverse) { let tabList = global.display.get_tab_list( - Meta.TabList.NORMAL_ALL, + Meta.TabList.NORMAL, global.workspace_manager.get_active_workspace()) .filter(w => !Scratch.isScratchWindow(w));