loginDialog: show session menu button when in auth failed
Right now we only show the session menu button when verifying, but we should also show it when verification is failed or we can end up in situation where the session menu disappears during an authentication retry. https://bugzilla.gnome.org/show_bug.cgi?id=707064
This commit is contained in:
@ -592,7 +592,8 @@ const LoginDialog = new Lang.Class({
|
||||
},
|
||||
|
||||
_shouldShowSessionMenuButton: function() {
|
||||
if (this._authPrompt.verificationStatus != AuthPrompt.AuthPromptStatus.VERIFYING)
|
||||
if (this._authPrompt.verificationStatus != AuthPrompt.AuthPromptStatus.VERIFYING &&
|
||||
this._authPrompt.verificationStatus != AuthPrompt.AuthPromptStatus.VERIFICATION_FAILED)
|
||||
return false;
|
||||
|
||||
if (this._user && this._user.is_loaded && this._user.is_logged_in())
|
||||
|
Reference in New Issue
Block a user