From 5b947a3896fc71ca49a64220c94b1b2752faa5fd Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Sun, 20 Sep 2020 02:46:56 -0400 Subject: [PATCH] Tab bar: Add comment for tab navigation in keypress handler --- chrome/content/zotero/zoteroPane.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/chrome/content/zotero/zoteroPane.js b/chrome/content/zotero/zoteroPane.js index eeb24301c8..de21d172fc 100644 --- a/chrome/content/zotero/zoteroPane.js +++ b/chrome/content/zotero/zoteroPane.js @@ -628,6 +628,8 @@ var ZoteroPane = new function() var command = Zotero.Keys.getCommand(event.key); + // Tab navigation + // TODO: Select across tabs without selecting with Ctrl-Shift, as in Firefox? let ctrlOnly = event.ctrlKey && !event.metaKey && !event.shiftKey && !event.altKey; if (ctrlOnly) { if (event.key == 'PageUp') {