Addresses #1073, Cannot type special characters using Option key on OS X in Firefox 3

Merge to 1.0.7 tag
This commit is contained in:
Dan Stillman 2008-07-16 05:59:01 +00:00
parent ecd7eae147
commit 28f63622f5

View File

@ -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;
}