Make sure we're registering a hotkey for a command that exists

This commit is contained in:
dannyrb 2019-06-02 23:04:24 -04:00
parent 6b0ef0904e
commit 03d66233ff

View File

@ -28,13 +28,13 @@ window.config = {
{ {
order: 0, order: 0,
label: 'Scale Viewport Up', label: 'Scale Viewport Up',
command: 'ScaleViewport', command: 'scaleUpViewport',
}, },
], ],
}, },
], ],
// //
hotkeys: { hotkeys: {
ScaleViewport: ['+'], scaleUpViewport: ['s'],
}, },
}; };