www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit b059b2abdef7a63a874626c0e7112bf9d54a6a6e
parent 1055187c8be280ddd9d22aa22282d396c98e7840
Author: Dan Stillman <dstillman@zotero.org>
Date:   Fri, 26 Jul 2013 15:34:39 -0400

Fix shortcut keys on Windows and Linux

Diffstat:
Mchrome/content/zotero/xpcom/zotero.js | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git 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; } }