From 03d66233ff78a17e1483daed586a9623447ab453 Mon Sep 17 00:00:00 2001 From: dannyrb Date: Sun, 2 Jun 2019 23:04:24 -0400 Subject: [PATCH] Make sure we're registering a hotkey for a command that exists --- public/config/default.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/config/default.js b/public/config/default.js index f4f1497c2..11108d5c7 100644 --- a/public/config/default.js +++ b/public/config/default.js @@ -28,13 +28,13 @@ window.config = { { order: 0, label: 'Scale Viewport Up', - command: 'ScaleViewport', + command: 'scaleUpViewport', }, ], }, ], // hotkeys: { - ScaleViewport: ['+'], + scaleUpViewport: ['s'], }, };