Changeset b987eb4 in mainline for uspace/app/tetris/scores.c


Ignore:
Timestamp:
2022-03-11T16:42:03Z (3 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b3b48f4
Parents:
c38ab6c
Message:

Translate keys to characters even if modifiers are pressed.

So that we can match Alt-key to menu accelerators. Of course
this means clients must check Ctrl and Alt state to determine
if they should insert characters, not just just kbd_event_t.c.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/tetris/scores.c

    rc38ab6c rb987eb4  
    149149                        continue;
    150150
     151                if ((ev.ev.key.mods & (KM_CTRL | KM_ALT)) != 0)
     152                        continue;
     153
    151154                kev = &ev.ev.key;
    152155
Note: See TracChangeset for help on using the changeset viewer.