From ecf1f1ac32285ec30c6b11d0ca00141425c21c11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20Monda?= Date: Fri, 30 Mar 2018 12:44:43 +0200 Subject: [PATCH] Actually switch the keymap. --- right/src/keymap.c | 1 + 1 file changed, 1 insertion(+) diff --git a/right/src/keymap.c b/right/src/keymap.c index c0a8092..9422c64 100644 --- a/right/src/keymap.c +++ b/right/src/keymap.c @@ -31,6 +31,7 @@ bool SwitchKeymapByAbbreviation(uint8_t length, char *abbrev) for (uint8_t i=0; iabbreviationLen == length && strcmp(keymap->abbreviation, abbrev) == 0) { + SwitchKeymap(i); return true; } }