loginDialog: Remove manual insensitive tracking

StWidget does this for us now
This commit is contained in:
Jasper St. Pierre 2012-08-01 17:38:00 -03:00
parent ad5572f275
commit aa30c6a323

View File

@ -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);
}];