wvkbd

git clone https://git.tarina.org/wvkbd
Log | Files | Refs | README | LICENSE

commit 4695a78e2520eb83b2f2fd6a6e51ab60d78f1050
parent fabdd72c03b73fb5fff8c3f9860188357cb6c0bc
Author: Maarten van Gompel <proycon@anaproy.nl>
Date:   Sun, 19 Sep 2021 13:56:09 +0200

fixed key label for Shift + KEY_SLASH on latin keymap

Diffstat:
Mlayout.mobintl.h | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/layout.mobintl.h b/layout.mobintl.h @@ -169,7 +169,7 @@ static struct key keys_full[] = { {"→", "→", 1.0, Code, KEY_RIGHT, .scheme = 1}, {"'", "\"", 1.0, Code, KEY_APOSTROPHE, .scheme = 1}, {";", ":", 1.0, Code, KEY_SEMICOLON, .scheme = 1}, - {"/", "?", 1.0, Code, KEY_SLASH, .scheme = 1}, + {"/", ">", 1.0, Code, KEY_SLASH, .scheme = 1}, {"", "", 0.0, EndRow}, {"1", "!", 1.0, Code, KEY_1}, @@ -274,7 +274,7 @@ static struct key keys_special[] = { {"⇧", "⇧", 2.0, Mod, Shift, .scheme = 1}, {";", ":", 1.0, Code, KEY_SEMICOLON}, - {"/", "?", 1.0, Code, KEY_SLASH}, + {"/", ">", 1.0, Code, KEY_SLASH}, {"<", "«", 1.0, Code, KEY_COMMA, 0, AltGr}, {">", "»", 1.0, Code, KEY_DOT, 0, AltGr}, {"¡", "¿", 1.0, Code, KEY_MENU}, @@ -772,7 +772,7 @@ static struct key keys_landscape[] = { {"m", "M", 1.0, Code, KEY_M, &layouts[ComposeM]}, {"↑", "↑", 0.75, Code, KEY_UP, .scheme = 1}, {"↓", "↓", 0.75, Code, KEY_DOWN, .scheme = 1}, - {"/", "?", 0.75, Code, KEY_SLASH, .scheme = 1}, + {"/", ">", 0.75, Code, KEY_SLASH, .scheme = 1}, {"⌫", "⌫", 1.5, Code, KEY_BACKSPACE, .scheme = 1}, {"", "", 0.0, EndRow},