svkbd

simple virtual keyboard
git clone git://git.suckless.org/svkbd
Log | Files | Refs | README | LICENSE

commit e2828d4f7a290ebab671c3bfff162684c7779be0
parent 4c9182636c4db00eb8bfa92571f7917ad974b628
Author: Maarten van Gompel <proycon@anaproy.nl>
Date:   Sun, 11 Jul 2021 17:53:40 +0200

added missing e caron to overlay in international and simple layouts (e.g. for czech)

Diffstat:
Mlayout.mobile-intl.h | 1+
Mlayout.mobile-simple.h | 1+
2 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/layout.mobile-intl.h b/layout.mobile-intl.h @@ -138,6 +138,7 @@ static Key overlay[OVERLAYS] = { { "ę", 0, XK_eogonek }, { "ē", 0, XK_emacron }, { "ė", 0, XK_eabovedot }, + { "ě", 0, XK_ecaron }, { 0, 0, XK_Cancel }, //-- { 0, 0, XK_y }, //New overlay diff --git a/layout.mobile-simple.h b/layout.mobile-simple.h @@ -212,6 +212,7 @@ static Key overlay[OVERLAYS] = { { "ę", 0, XK_eogonek }, { "ē", 0, XK_emacron }, { "ė", 0, XK_eabovedot }, + { "ě", 0, XK_ecaron }, { 0, 0, XK_Cancel }, { 0, 0, XK_y },