We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c414785 commit b9ed51bCopy full SHA for b9ed51b
js/shortcut.js
@@ -26,6 +26,7 @@ moveUpFast: 'shift+up',
26
moveDownFast: 'shift+down',
27
projectSave:!isMacOs ? 'ctrl+s' : 'command+s',
28
projectLoad:!isMacOs ? 'ctrl+o' : 'command+o',
29
+toggleBottomBar:!isMacOs ? 'ctrl+b' : 'command+b',
30
}
31
32
var isLongPressDirection=false;
@@ -181,6 +182,12 @@ e.preventDefault();
181
182
183
});
184
185
+// bind toggle bottom bar shortcut
186
+hotkeys(hotkeysMap.toggleBottomBar,'all',function (e) {
187
+btmToggleDrawer();
188
+e.preventDefault();
189
+});
190
+
191
// bind fast move shortcuts (10px)
192
hotkeys(hotkeysMap.moveLeftFast,'all',function (e) {
193
moveActiveObjectFast('left',e);
0 commit comments