mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-17 23:24:51 +00:00
modalDialog: Finish cleanup in close()
timestamp is unused and removed after cleanup in commit 3574c5246a, this fixes this in the missed parts
Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3253>
This commit is contained in:
parent
628d210826
commit
72223977c2
1 changed files with 2 additions and 2 deletions
|
|
@ -191,12 +191,12 @@ export const ModalDialog = GObject.registerClass({
|
|||
this.destroy();
|
||||
}
|
||||
|
||||
close(timestamp) {
|
||||
close() {
|
||||
if (this.state === State.CLOSED || this.state === State.CLOSING)
|
||||
return;
|
||||
|
||||
this._setState(State.CLOSING);
|
||||
this.popModal(timestamp);
|
||||
this.popModal();
|
||||
this._savedKeyFocus = null;
|
||||
|
||||
if (this._shouldFadeOut) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue