From 7df7f13e269fe5a7e4f84274fa7f173423e1b487 Mon Sep 17 00:00:00 2001 From: Damien Churchill Date: Wed, 28 Apr 2010 13:41:09 +0100 Subject: [PATCH] select the text when focusing the password field --- deluge/ui/web/js/deluge-all/LoginWindow.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/deluge/ui/web/js/deluge-all/LoginWindow.js b/deluge/ui/web/js/deluge-all/LoginWindow.js index 7480437c1..527c21842 100644 --- a/deluge/ui/web/js/deluge-all/LoginWindow.js +++ b/deluge/ui/web/js/deluge-all/LoginWindow.js @@ -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); } });