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
This commit is contained in:
parent
ea02380c15
commit
9786b2d096
@ -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);
|
||||
},
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user