panelMenu: Separate from ui chrome layer
The chrome layer contains the user interface elements (e.g., the panel) that disappear when fullscreen windows get displayed. Panel menus are currently put in the chrome layer, but don't need to be, since they are only displayed when the user is interacting with the shell and not a fullscreen application. Putting panel menus in the chrome layer does mean they will get stacked below shell interface elements that aren't in the chrome layer, though. This commit changes panel menus to be on the same layer as most other shell elements, so they get properly stacked above those elements. https://bugzilla.gnome.org/show_bug.cgi?id=657082
This commit is contained in:
parent
e8914c6699
commit
388cfa3695
@ -28,7 +28,7 @@ Button.prototype = {
|
||||
this.menu.actor.add_style_class_name('panel-menu');
|
||||
this.menu.connect('open-state-changed', Lang.bind(this, this._onOpenStateChanged));
|
||||
this.menu.actor.connect('key-press-event', Lang.bind(this, this._onMenuKeyPress));
|
||||
Main.layoutManager.addChrome(this.menu.actor);
|
||||
Main.uiGroup.add_actor(this.menu.actor);
|
||||
this.menu.actor.hide();
|
||||
},
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user