Sfoglia il codice sorgente

Ignore keycodes if meta key is also pressed

JC Brand 6 anni fa
parent
commit
836d3946e8
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      src/converse-chatview.js

+ 1 - 1
src/converse-chatview.js

@@ -996,7 +996,7 @@ converse.plugins.add('converse-chatview', {
                     // When ctrl is pressed, no chars are entered into the textarea.
                     // When ctrl is pressed, no chars are entered into the textarea.
                     return;
                     return;
                 }
                 }
-                if (!ev.shiftKey && !ev.altKey) {
+                if (!ev.shiftKey && !ev.altKey && !ev.metaKey) {
                     if (ev.keyCode === _converse.keycodes.FORWARD_SLASH) {
                     if (ev.keyCode === _converse.keycodes.FORWARD_SLASH) {
                         // Forward slash is used to run commands. Nothing to do here.
                         // Forward slash is used to run commands. Nothing to do here.
                         return;
                         return;