From 6e767fc9491b89ee295e5af6d34a17056fe37846 Mon Sep 17 00:00:00 2001 From: Aakansha Doshi Date: Thu, 21 Jan 2021 16:43:47 +0530 Subject: [PATCH] fix(actionmenu): toggle help dialog when "shift+?" is pressed (#2828) --- src/actions/actionMenu.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/actions/actionMenu.tsx b/src/actions/actionMenu.tsx index c56999d78..8cfae3981 100644 --- a/src/actions/actionMenu.tsx +++ b/src/actions/actionMenu.tsx @@ -74,7 +74,7 @@ export const actionShortcuts = register({ return { appState: { ...appState, - showHelpDialog: true, + showHelpDialog: !appState.showHelpDialog, }, commitToHistory: false, };