summaryrefslogtreecommitdiffstats
path: root/extensions/BugModal
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/BugModal')
-rw-r--r--extensions/BugModal/web/bug_modal.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/extensions/BugModal/web/bug_modal.js b/extensions/BugModal/web/bug_modal.js
index 462e7cff6..a31847d32 100644
--- a/extensions/BugModal/web/bug_modal.js
+++ b/extensions/BugModal/web/bug_modal.js
@@ -864,6 +864,8 @@ $(function() {
switch(String.fromCharCode(event.which).toLowerCase()) {
// ctrl+e or meta+e = enter edit mode
case 'e':
+ if (event.shiftKey)
+ return;
// don't conflict with text input shortcut
if (document.activeElement.nodeNode == 'INPUT' || document.activeElement.nodeName == 'TEXTAREA')
return;