appMenu: Make show() a no-op in locked state
The app menu is hidden when entering the lock screen, however it might be shown again while the lock is still in place - we don't want this ever to be the case, so make show() a no-op while the screen is locked. https://bugzilla.gnome.org/show_bug.cgi?id=682475
This commit is contained in:
parent
e9a4843eb0
commit
88effdd9c3
@ -285,7 +285,7 @@ const AppMenuButton = new Lang.Class({
|
|||||||
},
|
},
|
||||||
|
|
||||||
show: function() {
|
show: function() {
|
||||||
if (this._visible)
|
if (this._visible || Main.screenShield.locked)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
this._visible = true;
|
this._visible = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user