From 0297dfd12b7140e2e7b3a669fd1961a3965fd74f Mon Sep 17 00:00:00 2001 From: Wes Johnston Date: Tue, 4 Mar 2014 08:31:06 -0800 Subject: [PATCH] Bug 977592 - Don't autofocus the password field in auth dialogs. r=margaret --- mobile/android/components/PromptService.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mobile/android/components/PromptService.js b/mobile/android/components/PromptService.js index 012651350db..8744ab9335c 100644 --- a/mobile/android/components/PromptService.js +++ b/mobile/android/components/PromptService.js @@ -335,7 +335,7 @@ InternalPrompt.prototype = { aTitle, aText, aUsername, aPassword, aCheckMsg, aCheckState) { let p = this._getPrompt(aTitle, aText, null); this.addTextbox(p, aUsername.value, true, PromptUtils.getLocaleString("username", "passwdmgr")); - this.addPassword(p, aPassword.value, true, PromptUtils.getLocaleString("password", "passwdmgr")); + this.addPassword(p, aPassword.value, false, PromptUtils.getLocaleString("password", "passwdmgr")); this.addCheckbox(p, aCheckMsg, aCheckState); let data = this.showPrompt(p);