From 2ce7a3baa61af781db7d9fff76c330c2be255404 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Thu, 19 Mar 2015 12:35:00 +0100 Subject: [PATCH] legacyTray: Stack tray below modal dialogs System modal dialogs should disable other UI while open, so make sure the legacy tray does not appear on top of them. https://bugzilla.gnome.org/show_bug.cgi?id=746323 --- js/ui/legacyTray.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/ui/legacyTray.js b/js/ui/legacyTray.js index 42927ef6d..40b47a02a 100644 --- a/js/ui/legacyTray.js +++ b/js/ui/legacyTray.js @@ -100,6 +100,7 @@ const LegacyTray = new Lang.Class({ Main.layoutManager.addChrome(this.actor, { affectsInputRegion: false }); Main.layoutManager.trackChrome(this._slider, { affectsInputRegion: true }); + Main.uiGroup.set_child_below_sibling(this.actor, Main.layoutManager.modalDialogGroup); Main.ctrlAltTabManager.addGroup(this.actor, _("Status Icons"), 'focus-legacy-systray-symbolic', { sortGroup: CtrlAltTab.SortGroup.BOTTOM });