From 378a3df5ea97027f100cd36f279c2bd1774e92e0 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Fri, 17 Jul 2015 12:57:21 -0400 Subject: [PATCH] authPrompt: set next button to next when asking for username If the next button ever gets set to Sign In, it won't get reset to next until the next question asked by pam. This commit ensures it gets reset to Next when asking for the username. https://bugzilla.gnome.org/show_bug.cgi?id=752739 --- js/gdm/authPrompt.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/gdm/authPrompt.js b/js/gdm/authPrompt.js index 88d11d7ea..a5c6862a9 100644 --- a/js/gdm/authPrompt.js +++ b/js/gdm/authPrompt.js @@ -432,6 +432,7 @@ const AuthPrompt = new Lang.Class({ let oldStatus = this.verificationStatus; this.verificationStatus = AuthPromptStatus.NOT_VERIFYING; this.cancelButton.reactive = true; + this.nextButton.label = _("Next"); if (this._userVerifier) this._userVerifier.cancel();