mirror of
https://github.com/osmarks/mycorrhiza.git
synced 2025-01-22 16:16:51 +00:00
Fix ? triggering the dialog in the editor
This commit is contained in:
parent
2d585be152
commit
3e6cecf9e1
@ -300,7 +300,7 @@
|
|||||||
|
|
||||||
// Global shortcuts work everywhere.
|
// Global shortcuts work everywhere.
|
||||||
let globalShortcuts = new ShortcutHandler(document, false);
|
let globalShortcuts = new ShortcutHandler(document, false);
|
||||||
globalShortcuts.add('?, ' + (isMac ? 'Meta+/' : 'Ctrl+/'), openHelp);
|
globalShortcuts.add(isMac ? 'Meta+/' : 'Ctrl+/', openHelp);
|
||||||
|
|
||||||
// Page shortcuts work everywhere except on text fields.
|
// Page shortcuts work everywhere except on text fields.
|
||||||
let pageShortcuts = new ShortcutHandler(document, false, notTextField);
|
let pageShortcuts = new ShortcutHandler(document, false, notTextField);
|
||||||
|
Loading…
Reference in New Issue
Block a user