mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
Dont clear all flags in vkbd_clear_state_locked(). Clear only COMPOSE flag.
MFC after: 3 days
This commit is contained in:
parent
e2c421f7f2
commit
b4b485a5d8
1 changed files with 1 additions and 1 deletions
|
|
@ -1189,7 +1189,7 @@ vkbd_clear_state_locked(vkbd_state_t *state)
|
|||
{
|
||||
VKBD_LOCK_ASSERT(state, MA_OWNED);
|
||||
|
||||
state->ks_flags = 0;
|
||||
state->ks_flags &= ~COMPOSE;
|
||||
state->ks_polling = 0;
|
||||
state->ks_state &= LOCK_MASK; /* preserve locking key state */
|
||||
state->ks_accents = 0;
|
||||
|
|
|
|||
Loading…
Reference in a new issue