Fixed issue with keyboard.

There was a blank line below which was a result of the array being
larger than necessary
master
Jonathan Hodgson 3 years ago
parent 044a049227
commit b5e37ea6c5
  1. 8
      layout.colemak.h

@ -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 },
@ -60,10 +60,10 @@ static Key keys_en[59] = {
{ "", XK_Super_L, 1 },
{ "Alt", XK_Alt_L, 1 },
{ "", XK_space, 5 },
{ "", XK_Cancel, 1}
{ "", 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…
Cancel
Save