From e61048cfa4816dde231a4f00ca7cf533e1534a72 Mon Sep 17 00:00:00 2001 From: ccd0 Date: Sat, 20 Jun 2015 21:08:09 -0700 Subject: [PATCH] Support space bar in keybinds. --- src/Miscellaneous/Keybinds.coffee | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Miscellaneous/Keybinds.coffee b/src/Miscellaneous/Keybinds.coffee index d34254238..6e6659f72 100755 --- a/src/Miscellaneous/Keybinds.coffee +++ b/src/Miscellaneous/Keybinds.coffee @@ -204,6 +204,8 @@ Keybinds = 'Enter' when 27 'Esc' + when 32 + 'Space' when 37 'Left' when 38