diff --git a/chrome/content/zotero/overlay.js b/chrome/content/zotero/overlay.js index 096e5260c..2b6ff5696 100644 --- a/chrome/content/zotero/overlay.js +++ b/chrome/content/zotero/overlay.js @@ -400,9 +400,9 @@ var ZoteroPane = new function() return; } - // Ignore modifiers other than accel-alt (or accel-shift if useShift is on) + // Ignore modifiers other than Ctrl-Alt or Cmd-Shift if (!((Zotero.isMac ? event.metaKey : event.ctrlKey) && - useShift ? event.shiftKey : event.altKey)) { + (useShift ? event.shiftKey : event.altKey))) { return; }