Ignore:
File:
1 edited

Legend:

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

    rb987eb4 r28a5ebd  
    216216        char32_t c;
    217217
     218        /* Produce no characters when Ctrl or Alt is pressed. */
     219        if ((ev->mods & (KM_CTRL | KM_ALT)) != 0)
     220                return 0;
     221
    218222        c = translate(ev->key, map_neutral, sizeof(map_neutral) / sizeof(char32_t));
    219223        if (c != 0)
Note: See TracChangeset for help on using the changeset viewer.