Преглед на файлове

Merge pull request #1694 from abichinger/fix/tilde-command

fix: command of double tilde to strikethrough
Lucas.Xu преди 2 години
родител
ревизия
3de4e1cb12
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      frontend/app_flowy/packages/appflowy_editor/lib/src/service/shortcut_event/built_in_shortcut_events.dart

+ 1 - 1
frontend/app_flowy/packages/appflowy_editor/lib/src/service/shortcut_event/built_in_shortcut_events.dart

@@ -282,7 +282,7 @@ List<ShortcutEvent> builtInShortcutEvents = [
   ),
   ShortcutEvent(
     key: 'Double tilde to strikethrough',
-    command: 'shift+tilde',
+    command: 'tilde,shift+tilde',
     handler: doubleTildeToStrikethrough,
   ),
   ShortcutEvent(