Fixed issue with mod keys

This commit is contained in:
Devine Lu Linvega 2024-01-16 17:22:07 -08:00
parent f135322b17
commit 694edddf5d
1 changed files with 1 additions and 0 deletions

View File

@ -118,6 +118,7 @@ get_button(KeySym sym)
case XK_Alt_L: return 0x02; case XK_Alt_L: return 0x02;
case XK_Shift_L: return 0x04; case XK_Shift_L: return 0x04;
case XK_Home: return 0x08; case XK_Home: return 0x08;
case XK_Meta_L: return 0x02;
} }
return 0x00; return 0x00;
} }