diff --git a/src/js/controller/DrawingController.js b/src/js/controller/DrawingController.js index b7d7eaab..65560ca6 100644 --- a/src/js/controller/DrawingController.js +++ b/src/js/controller/DrawingController.js @@ -63,8 +63,8 @@ $.subscribe(Events.FRAME_SIZE_CHANGED, $.proxy(this.onFrameSizeChanged_, this)); pskl.app.shortcutService.addShortcut('0', this.resetZoom_.bind(this)); - pskl.app.shortcutService.addShortcut('+', this.increaseZoom_.bind(this)); - pskl.app.shortcutService.addShortcut('-', this.decreaseZoom_.bind(this)); + pskl.app.shortcutService.addShortcut('+', this.increaseZoom_.bind(this, 1)); + pskl.app.shortcutService.addShortcut('-', this.decreaseZoom_.bind(this, 1)); window.setTimeout(this.afterWindowResize_.bind(this), 100); };