Skip to content

Commit

Permalink
Corrected spacebar keycode.
Browse files Browse the repository at this point in the history
Lowercase s in space, that was hard to track down.
  • Loading branch information
octalmage committed Jul 18, 2015
1 parent 589ca78 commit e935825
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/keycode.h
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ enum _MMKeyCode {
K_CONTROL = XK_Control_L,
K_SHIFT = XK_Shift_L,
K_CAPSLOCK = XK_Shift_Lock,
K_SPACE = XK_KP_Space
K_SPACE = XK_space
};

typedef KeySym MMKeyCode;
Expand Down

0 comments on commit e935825

Please sign in to comment.