From 01849cb2d926c3c51b36bac0bed8a97c9d3cad71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Georges=20Dup=C3=A9ron?= Date: Tue, 19 Jun 2018 21:44:54 +0200 Subject: [PATCH] WIP: focus the search field after it is displayed. --- chrome/content/zotero/zoteroPane.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/chrome/content/zotero/zoteroPane.js b/chrome/content/zotero/zoteroPane.js index 1cbd0f54d..50dd6a0f3 100644 --- a/chrome/content/zotero/zoteroPane.js +++ b/chrome/content/zotero/zoteroPane.js @@ -951,6 +951,9 @@ var ZoteroPane = new function() this.showCollectionLookup = Zotero.Promise.coroutine(function* (parentKey) { var collectionsLookupTextbox = document.getElementById('zotero-collection-lookup-textbox'); collectionsLookupTextbox.hidden = !collectionsLookupTextbox.hidden; + if (!collectionsLookupTextbox.hidden) { + collectionsLookupTextbox.focus(); + } this.updateCollectionLookupToolbarButton(); }); this.updateCollectionLookupToolbarButton = function () {