(svn r20072) -Fix (r20065): NUM_MINUS was stored as NUM_PLUS in config file.

This commit is contained in:
frosch 2010-07-04 09:35:06 +00:00
parent 397d1186d7
commit 6c6d1e3792

View File

@ -53,7 +53,7 @@ static const KeycodeNames _keycode_to_name[] = {
{"PLUS", (WindowKeyCodes)'+'}, {"PLUS", (WindowKeyCodes)'+'},
{"COMMA", (WindowKeyCodes)','}, {"COMMA", (WindowKeyCodes)','},
{"NUM_PLUS", WKC_NUM_PLUS}, {"NUM_PLUS", WKC_NUM_PLUS},
{"NUM_PLUS", WKC_NUM_MINUS}, {"NUM_MINUS", WKC_NUM_MINUS},
{"=", WKC_EQUALS}, {"=", WKC_EQUALS},
{"-", WKC_MINUS}, {"-", WKC_MINUS},
}; };