This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository terminology.
View the commit online.
commit 719ec424e80767446e481f4f3a7eaa5783dccafb
Author: Boris Faure <[email protected]>
AuthorDate: Sat Sep 12 16:45:10 2026 +0200
keyin: match keypad keys on "KP_", not the dead "Kk"
---
src/bin/keyin.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/keyin.c b/src/bin/keyin.c
index fc065d0a..b125ba1c 100644
--- a/src/bin/keyin.c
+++ b/src/bin/keyin.c
@@ -260,7 +260,7 @@ keyin_handle_key_to_pty(Termpty *ty, const Evas_Event_Key_Down *ev,
}
}
}
- if (ev->key[0] == 'K' && (ev->key[1] == 'k' || ev->key[1] == 'P'))
+ if (!strncmp(ev->key, "KP_", 3))
{
if (!evas_key_lock_is_set(ev->locks, "Num_Lock"))
{
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.