GNOME Bugzilla – Bug 694784
Show the session list when needed
Last modified: 2013-02-28 02:33:22 UTC
The conditions for showing the user list were not properly inverted, causing the session list to be hidden when it shouldn't.
Created attachment 237494 [details] [review] Show the session list when needed
Review of attachment 237494 [details] [review]: ::: js/gdm/loginDialog.js @@ +754,3 @@ transition: 'easeOutQuad' }); + if (!(this._user && this._user.is_logged_in()) || this._verifyingUser) close. i think it's got to be: if ((this._user && !this._user.is_logged_in()) || this.verifyingUser) otherwise we'll continue showing the session list too early when clicking "Not Listed?"
(pushed with noted change) Attachment 237494 [details] pushed as a7bb6a2 - Show the session list when needed
*** Bug 694733 has been marked as a duplicate of this bug. ***