fix: don't filter super, hyper and meta modifiers for no reason

This filter was introduced to ignore caps lock, scroll lock and num lock
modifier bits. super, hyper and meta might actually be useful though.
This commit is contained in:
CJ van den Berg 2026-03-28 14:48:07 +01:00
parent f61c716c27
commit a782bfb690
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

@ -627,6 +627,9 @@ fn filter_mods(key_: vaxis.Key) vaxis.Key {
.shift = key_.mods.shift,
.alt = key_.mods.alt,
.ctrl = key_.mods.ctrl,
.super = key_.mods.super,
.hyper = key_.mods.hyper,
.meta = key_.mods.meta,
};
return key__;
}