From b059b2abdef7a63a874626c0e7112bf9d54a6a6e Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Fri, 26 Jul 2013 15:34:39 -0400 Subject: [PATCH] Fix shortcut keys on Windows and Linux --- chrome/content/zotero/xpcom/zotero.js | 1 + 1 file changed, 1 insertion(+) diff --git a/chrome/content/zotero/xpcom/zotero.js b/chrome/content/zotero/xpcom/zotero.js index ec1b36257..80c8d1e6f 100644 --- a/chrome/content/zotero/xpcom/zotero.js +++ b/chrome/content/zotero/xpcom/zotero.js @@ -2327,6 +2327,7 @@ Zotero.Keys = new function() { function getCommand(key) { + key = key.toUpperCase(); return _keys[key] ? _keys[key] : false; } }