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:
parent
f61c716c27
commit
a782bfb690
1 changed files with 3 additions and 0 deletions
|
|
@ -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__;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue