Преглед изворни кода

Make mentions readonly for now (#419)

Danilo Bargen пре 7 година
родитељ
комит
882105dc2a
1 измењених фајлова са 2 додато и 1 уклоњено
  1. 2 1
      src/partials/messenger.ts

+ 2 - 1
src/partials/messenger.ts

@@ -629,6 +629,7 @@ class ConversationController {
      * Handle mention selector navigation
      */
     public onComposeKeyDown = (ev: KeyboardEvent): boolean => {
+        /* Make mentions readonly for now
         if (this.showMentionSelector() && !ev.shiftKey) {
             let move = ev.key === 'ArrowDown' ? 1 : (ev.key === 'ArrowUp' ? - 1 : 0);
             if (move !== 0) {
@@ -659,7 +660,7 @@ class ConversationController {
                 return false;
             }
         }
-
+        */
         return true;
     }