diff options
author | Jonas Dreßler <verdre@v0yd.nl> | 2019-12-05 13:06:35 +0100 |
---|---|---|
committer | Florian Müllner <fmuellner@gnome.org> | 2020-01-20 14:46:39 +0100 |
commit | aae3789142834cfde0d032bdf3b7f0b00657beba (patch) | |
tree | 499e69051fc112269e37ab6fe4cc04b7da34e013 | |
parent | 184f980c18d376f628a8d1aff2b3985960fa4b58 (diff) | |
download | gnome-shell-aae3789142834cfde0d032bdf3b7f0b00657beba.tar.gz |
endSessionDialog: Fix a signal-name typo
https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/935
-rw-r--r-- | js/ui/endSessionDialog.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/ui/endSessionDialog.js b/js/ui/endSessionDialog.js index 7c8961d3b..d9f78de77 100644 --- a/js/ui/endSessionDialog.js +++ b/js/ui/endSessionDialog.js @@ -260,7 +260,7 @@ class EndSessionDialog extends ModalDialog.ModalDialog { this.connect('opened', this._onOpened.bind(this)); - this._userLoadedId = this._user.connect('notify::is_loaded', this._sync.bind(this)); + this._userLoadedId = this._user.connect('notify::is-loaded', this._sync.bind(this)); this._userChangedId = this._user.connect('changed', this._sync.bind(this)); let mainContentLayout = new St.BoxLayout({ |