keybinds: fix tracking of sent key states

This commit is contained in:
vaxerski 2024-01-10 18:06:38 +01:00
parent b240704bee
commit d484506600
2 changed files with 26 additions and 20 deletions

View file

@ -41,6 +41,7 @@ struct SPressedKeyWithMods {
xkb_keysym_t keysym = 0;
uint32_t keycode = 0;
uint32_t modmaskAtPressTime = 0;
bool sent = false;
};
class CKeybindManager {