keydev: add Catalog+4th row combo for F1...F6 on Math+

This commit is contained in:
Lephe 2025-01-07 21:32:49 +01:00
parent 7a479e4f45
commit 7ac9668dfd
No known key found for this signature in database
GPG key ID: 1BBA026E13FC0495

View file

@ -263,6 +263,14 @@ key_event_t keydev_unqueue_event(keydev_t *d)
if(!queue_poll(d, &ev))
return ev;
/* Compatibility combinations can transform the .key attribute */
#if GINT_HW_CG
if(gint[HWCALC] == HWCALC_FXCG100) {
if(keydev_keydown(d, KEY_CATALOG) && ev.row == 6)
ev.key = KEY_F1 + (6 - ev.col);
}
#endif
/* Update the event state accordingly */
int mask = 1 << ev.col;