Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hid/input/layout/us_qwerty.c

    rb987eb4 r28a5ebd  
    219219        char32_t c;
    220220
     221        /* Produce no characters when Ctrl or Alt is pressed. */
     222        if ((ev->mods & (KM_CTRL | KM_ALT)) != 0)
     223                return 0;
     224
    221225        c = translate(ev->key, map_neutral, sizeof(map_neutral) / sizeof(char32_t));
    222226        if (c != 0)
Note: See TracChangeset for help on using the changeset viewer.