Fixed issue with keyboard.
There was a blank line below which was a result of the array being larger than necessary
This commit is contained in:
parent
044a049227
commit
b5e37ea6c5
1 changed files with 4 additions and 4 deletions
|
@ -1,5 +1,5 @@
|
|||
static Key keys[59] = { NULL };
|
||||
static Key keys_en[59] = {
|
||||
static Key keys[58] = { NULL };
|
||||
static Key keys_en[58] = {
|
||||
{ "Esc", XK_Escape, 1 },
|
||||
{ "1!", XK_1, 1 },
|
||||
{ "2\"", XK_2, 1 },
|
||||
|
@ -63,7 +63,7 @@ static Key keys_en[59] = {
|
|||
{ "↺", XK_Cancel, 1 }
|
||||
};
|
||||
|
||||
static Key keys_symbols[59] = {
|
||||
static Key keys_symbols[58] = {
|
||||
{ "1!", XK_1, 1 },
|
||||
{ "2@", XK_2, 1 },
|
||||
{ "3#", XK_3, 1 },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue