select the text when focusing the password field

This commit is contained in:
Damien Churchill 2010-04-28 13:41:09 +01:00
parent 066d199c78
commit 7df7f13e26
1 changed files with 2 additions and 3 deletions

View File

@ -129,7 +129,7 @@ Deluge.LoginWindow = Ext.extend(Ext.Window, {
buttons: Ext.MessageBox.OK,
modal: false,
fn: function() {
passwordField.focus();
passwordField.focus(true, 10);
},
icon: Ext.MessageBox.WARNING,
iconCls: 'x-deluge-icon-warning'
@ -148,7 +148,6 @@ Deluge.LoginWindow = Ext.extend(Ext.Window, {
},
onShow: function() {
this.passwordField.focus(false, 150);
this.passwordField.setRawValue('');
this.passwordField.focus(true, true);
}
});