Compare commits

...

2 Commits

Author SHA1 Message Date
Takashi Kokubun 823b749635 Update CHANGELOG 2 weeks ago
Chakib Benziane ac0f4aa3ee
better to send no key for skip event (#462)
I didn't think much about it on my first patch but when skip_key_event
is set the KEY_UNKNOWN is repeated. Better to send no key at all.
2 weeks ago

@ -1,3 +1,7 @@
## Unreleased
- Emit no key event instead of `KEY_UNKNOWN` on `skip_key_event` [#462](https://github.com/xremap/xremap/pull/462)
## v0.8.18
- Fix issues in the release pipeline

@ -354,7 +354,7 @@ impl EventHandler {
if skip_key_event {
// Do not dispatch the original key
vec![(Key::KEY_UNKNOWN, value)]
vec![]
} else {
// dispatch the original key
vec![(key, value)]

Loading…
Cancel
Save