Fix ctrlOrCmd + Slash shortcut to match the guide

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
pull/21833/head
Michael Telatynski 2020-03-19 15:52:17 +00:00
parent 58bfc49e2a
commit 3c2101fa31
1 changed files with 1 additions and 1 deletions

View File

@ -380,7 +380,7 @@ const LoggedInView = createReactClass({
break; break;
case Key.SLASH: case Key.SLASH:
if (ev.ctrlKey && !ev.shiftKey && !ev.altKey && !ev.metaKey) { if (ctrlCmdOnly) {
KeyboardShortcuts.toggleDialog(); KeyboardShortcuts.toggleDialog();
handled = true; handled = true;
} }