keyring: Fix button disabled when prompting for confirmation

https://bugzilla.gnome.org/show_bug.cgi?id=696304
This commit is contained in:
Stef Walter 2013-04-17 12:02:12 +02:00
parent d6fe008b2c
commit 12a1d7b38d

View File

@ -143,8 +143,15 @@ const KeyringDialog = new Lang.Class({
},
_updateSensitivity: function(sensitive) {
this._passwordEntry.reactive = sensitive;
this._passwordEntry.clutter_text.editable = sensitive;
if (this._passwordEntry) {
this._passwordEntry.reactive = sensitive;
this._passwordEntry.clutter_text.editable = sensitive;
}
if (this._confirmEntry) {
this._confirmEntry.reactive = sensitive;
this._confirmEntry.clutter_text.editable = sensitive;
}
this._continueButton.can_focus = sensitive;
this._continueButton.reactive = sensitive;