From 300c4d84321a0b4778a594e06605729ad9bb3961 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Wed, 20 Feb 2013 10:40:01 -0500 Subject: [PATCH] gdm: make entry reactive when asking user question We disable the entry after a user answers a question while we process it, but we don't reactivate it later if asked another one. This commit makes sure the entry is always reactive when we are waiting for an answer from the user. https://bugzilla.gnome.org/show_bug.cgi?id=691806 --- js/gdm/loginDialog.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/gdm/loginDialog.js b/js/gdm/loginDialog.js index 70d091f2e..ee366e41c 100644 --- a/js/gdm/loginDialog.js +++ b/js/gdm/loginDialog.js @@ -881,6 +881,7 @@ const LoginDialog = new Lang.Class({ _askQuestion: function(verifier, serviceName, question, passwordChar) { this._promptLabel.set_text(question); + this._updateSensitivity(true); this._promptEntry.set_text(''); this._promptEntry.clutter_text.set_password_char(passwordChar);