From 448b71cbce717ab2f3bc7e99a51c41a15c19fa9c Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Tue, 4 Jul 2017 01:03:23 -0400 Subject: [PATCH] =?UTF-8?q?Bind=20panel=20toggles=20to=20=E2=8C=98?= =?UTF-8?q?=E2=87=A7=20+=20key?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- modules/ui/info.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ui/info.js b/modules/ui/info.js index 9452b0f30..8f2b94fab 100644 --- a/modules/ui/info.js +++ b/modules/ui/info.js @@ -117,7 +117,7 @@ export function uiInfo(context) { var key = t('infobox.' + k + '.key', { default: null }); if (!key) return; keybinding - .on(uiCmd('⌘' + key), function() { toggle(k); }); + .on(uiCmd('⌘⇧' + key), function() { toggle(k); }); }); d3.select(document)