Pārlūkot izejas kodu

Add support for committing a text entry on cmd/shift click (#1185)

alaoui abdellah 5 gadi atpakaļ
vecāks
revīzija
980d08ce56
1 mainītis faili ar 7 papildinājumiem un 0 dzēšanām
  1. 7 0
      src/element/textWysiwyg.tsx

+ 7 - 0
src/element/textWysiwyg.tsx

@@ -109,6 +109,13 @@ export function textWysiwyg({
       ev.preventDefault();
       handleSubmit();
     }
+    if (ev.key === KEYS.ENTER && (ev.shiftKey || ev.metaKey)) {
+      ev.preventDefault();
+      if (ev.isComposing || ev.keyCode === 229) {
+        return;
+      }
+      handleSubmit();
+    }
     if (ev.key === KEYS.ENTER && !ev.shiftKey) {
       ev.stopPropagation();
     }