From 9915bad039d6c3838dfa6a7c58927946709d307f Mon Sep 17 00:00:00 2001 From: Joaquim Rocha Date: Wed, 19 Jul 2017 14:08:20 +0200 Subject: [PATCH] polkitAgent: Do not set initial focus in the password entry The password entry can be hidden if the user has no password set, but setting the initial focus to it will result in the entry responding to the "activate" and signals. Besides, with the logic that the dialog follows, setting the initial focus in the entry is redundant, because the focus is also set in the entry upon showing it. --- js/ui/components/polkitAgent.js | 1 - 1 file changed, 1 deletion(-) diff --git a/js/ui/components/polkitAgent.js b/js/ui/components/polkitAgent.js index b99e472c9..4056f72e7 100644 --- a/js/ui/components/polkitAgent.js +++ b/js/ui/components/polkitAgent.js @@ -123,7 +123,6 @@ var AuthenticationDialog = new Lang.Class({ this._passwordBox.add(this._workSpinner.actor); - this.setInitialKeyFocus(this._passwordEntry); this._passwordBox.hide(); this._errorMessageLabel = new St.Label({ style_class: 'prompt-dialog-error-label' });