www

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

commit 5bfc1e419917eeaf5174bd7d0ece4d3c68e8511f
parent abce94458b3635276015f59e34247b749180722d
Author: Dan Stillman <dstillman@zotero.org>
Date:   Tue, 28 Oct 2014 13:45:55 -0400

Fix comment - force-delete on Win/Linux is Shift, not Ctrl

Diffstat:
Mchrome/content/zotero/zoteroPane.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/chrome/content/zotero/zoteroPane.js b/chrome/content/zotero/zoteroPane.js @@ -590,7 +590,7 @@ var ZoteroPane = new function() } else if ((event.keyCode == event.DOM_VK_BACK_SPACE && Zotero.isMac) || event.keyCode == event.DOM_VK_DELETE) { - // If Cmd/Ctrl delete, use forced mode, which does different + // If Cmd/Shift delete, use forced mode, which does different // things depending on the context var force = event.metaKey || (!Zotero.isMac && event.shiftKey); ZoteroPane_Local.deleteSelectedItems(force);