From 28f63622f506fb2eaebc8b66bfbfd0d01c46a30b Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Wed, 16 Jul 2008 05:59:01 +0000 Subject: [PATCH] Addresses #1073, Cannot type special characters using Option key on OS X in Firefox 3 Merge to 1.0.7 tag --- chrome/content/zotero/overlay.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }