From 54588453dcd34bd72afaf4bd5f356ff38cd7f57e Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Mon, 15 Nov 2021 23:08:31 -0500 Subject: [PATCH] Fix selection of collections pane on "Focus Libraries Pane" shortcut --- chrome/content/zotero/zoteroPane.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/zoteroPane.js b/chrome/content/zotero/zoteroPane.js index af183c22d8..36b06f77b6 100644 --- a/chrome/content/zotero/zoteroPane.js +++ b/chrome/content/zotero/zoteroPane.js @@ -759,7 +759,7 @@ var ZoteroPane = new function() try { switch (command) { case 'library': - this.itemsView.focus(); + this.collectionsView.focus(); break; case 'quicksearch': document.getElementById('zotero-tb-search').select();