From 8b977252f3bcde603c88e900b2ede7f44eadd176 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Thu, 29 Aug 2013 11:46:56 -0400 Subject: [PATCH] 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 --- js/gdm/loginDialog.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/gdm/loginDialog.js b/js/gdm/loginDialog.js index a4eba2a0f..3b4f2c54d 100644 --- a/js/gdm/loginDialog.js +++ b/js/gdm/loginDialog.js @@ -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())