From 9786b2d096baa1f15c885e1cc59bbb32f176d67e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Wed, 26 Jun 2013 10:41:04 +0200 Subject: [PATCH] layout: Keep the top_window group above newly added chrome The top_window_group was introduced for popup windows that should appear above system chrome, but as the group itself is just a child of Main.uiGroup, chrome that is added after top_window_group will still be stacked on top. At least correct the stacking for actors added via addChrome(). https://bugzilla.gnome.org/show_bug.cgi?id=702338 --- js/ui/layout.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/js/ui/layout.js b/js/ui/layout.js index 68166ab06..2444a2ab4 100644 --- a/js/ui/layout.js +++ b/js/ui/layout.js @@ -749,6 +749,8 @@ const LayoutManager = new Lang.Class({ // and shown otherwise) addChrome: function(actor, params) { this.uiGroup.add_actor(actor); + if (this.uiGroup.contains(global.top_window_group)) + this.uiGroup.set_child_below_sibling(actor, global.top_window_group); this._trackActor(actor, params); },