Bind panel toggles to ⌘⇧ + key

This commit is contained in:
Bryan Housel
2017-07-04 01:03:23 -04:00
parent 71ecdbd575
commit 448b71cbce

View File

@@ -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)