diff --git a/web/app/3d/ui/input-manager.js b/web/app/3d/ui/input-manager.js index b7e2f945..d66fabbd 100644 --- a/web/app/3d/ui/input-manager.js +++ b/web/app/3d/ui/input-manager.js @@ -30,7 +30,7 @@ InputManager.prototype.handleKeyPress = function(e) { for (let action in this.keymap) { if (jwerty.is(this.keymap[action], e)) { - this.app.actionManager.run(action, e); + setTimeout(() => this.app.actionManager.run(action, e), 0); break; } }