From 2a35763a8ad8252011b7dc7dc3c1791c39746948 Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Sun, 1 Sep 2013 12:27:42 -0700 Subject: [PATCH] Add Backspace to the table of key names. Closes #1631. --- aegisub/src/hotkey.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/aegisub/src/hotkey.cpp b/aegisub/src/hotkey.cpp index b85cc213f..f89ddaa26 100644 --- a/aegisub/src/hotkey.cpp +++ b/aegisub/src/hotkey.cpp @@ -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");