Add Backspace to the table of key names. Closes #1631.

This commit is contained in:
Thomas Goyne 2013-09-01 12:27:42 -07:00
parent 51b21576cc
commit 2a35763a8a

View file

@ -170,6 +170,7 @@ static void init_keycode_names() {
str[0] = i;
set_kc(keycode_names, i, str);
}
set_kc(keycode_names, WXK_BACK, "Backspace");
set_kc(keycode_names, WXK_TAB, "Tab");
set_kc(keycode_names, WXK_RETURN, "Enter");
set_kc(keycode_names, WXK_ESCAPE, "Escape");