From aa30c6a323b42dbac232713cbb8c94f28b968bc3 Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Wed, 1 Aug 2012 17:38:00 -0300 Subject: [PATCH] loginDialog: Remove manual insensitive tracking StWidget does this for us now --- js/gdm/loginDialog.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/js/gdm/loginDialog.js b/js/gdm/loginDialog.js index 39434cf94..5c60d24b2 100644 --- a/js/gdm/loginDialog.js +++ b/js/gdm/loginDialog.js @@ -974,7 +974,6 @@ const LoginDialog = new Lang.Class({ function() { this._promptFingerprintMessage.hide(); this._promptEntry.reactive = true; - this._promptEntry.remove_style_pseudo_class('insensitive'); this._promptEntry.set_text(''); }]; @@ -994,7 +993,6 @@ const LoginDialog = new Lang.Class({ function() { let _text = this._promptEntry.get_text(); this._promptEntry.reactive = false; - this._promptEntry.add_style_pseudo_class('insensitive'); this._userVerifier.answerQuery(serviceName, _text); }];