From 7afdb541ce547f74f6f9aa40008f073570ecb8d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Fri, 27 Feb 2015 20:13:05 +0100 Subject: [PATCH] window-list: Adjust to trayBox removal The point of that code is to keep the window-list underneath modals' lightboxes if possible (i.e. unless the OSK is shown). The trayBox was a natural pick back in the day, but the panel will do just as well ... https://bugzilla.gnome.org/show_bug.cgi?id=745304 --- extensions/window-list/extension.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extensions/window-list/extension.js b/extensions/window-list/extension.js index f2b9811e..4c3b1beb 100644 --- a/extensions/window-list/extension.js +++ b/extensions/window-list/extension.js @@ -803,7 +803,7 @@ const WindowList = new Lang.Class({ Main.layoutManager.addChrome(this.actor, { affectsStruts: true, trackFullscreen: true }); - Main.uiGroup.set_child_above_sibling(this.actor, Main.layoutManager.trayBox); + Main.uiGroup.set_child_above_sibling(this.actor, Main.layoutManager.panelBox); Main.ctrlAltTabManager.addGroup(this.actor, _("Window List"), 'start-here-symbolic'); this.actor.width = this._monitor.width; @@ -825,7 +825,7 @@ const WindowList = new Lang.Class({ Main.uiGroup.set_child_above_sibling(this.actor, keyboardBox); else Main.uiGroup.set_child_above_sibling(this.actor, - Main.layoutManager.trayBox); + Main.layoutManager.panelBox); this._updateKeyboardAnchor(); }));