popupMenu: Close when a system modal pops up
Just like switcher popups, popup menus don't play well together with system modals, and generally have a lower priority. So just like switcher popups, close popup menus when a system modal dialog pops up. https://gitlab.gnome.org/GNOME/gnome-shell/issues/1536
This commit is contained in:
parent
c0309d9732
commit
ccd8b47d30
@ -817,6 +817,7 @@ var PopupMenu = class extends PopupMenuBase {
|
|||||||
this._onKeyPress.bind(this));
|
this._onKeyPress.bind(this));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
this._systemModalOpenedId = 0;
|
||||||
this._openedSubMenu = null;
|
this._openedSubMenu = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -891,6 +892,11 @@ var PopupMenu = class extends PopupMenuBase {
|
|||||||
if (this.isEmpty())
|
if (this.isEmpty())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
if (!this._systemModalOpenedId) {
|
||||||
|
this._systemModalOpenedId =
|
||||||
|
Main.layoutManager.connect('system-modal-opened', () => this.close());
|
||||||
|
}
|
||||||
|
|
||||||
this.isOpen = true;
|
this.isOpen = true;
|
||||||
|
|
||||||
this._boxPointer.setPosition(this.sourceActor, this._arrowAlignment);
|
this._boxPointer.setPosition(this.sourceActor, this._arrowAlignment);
|
||||||
@ -921,6 +927,11 @@ var PopupMenu = class extends PopupMenuBase {
|
|||||||
destroy() {
|
destroy() {
|
||||||
if (this._keyPressId)
|
if (this._keyPressId)
|
||||||
this.sourceActor.disconnect(this._keyPressId);
|
this.sourceActor.disconnect(this._keyPressId);
|
||||||
|
|
||||||
|
if (this._systemModalOpenedId)
|
||||||
|
Main.layoutManager.disconnect(this._systemModalOpenedId);
|
||||||
|
this._systemModalOpenedId = 0;
|
||||||
|
|
||||||
super.destroy();
|
super.destroy();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user