mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-17 22:05:22 -05:00
input: enable repeat while COMPOSING
This commit is contained in:
parent
9f3dba683e
commit
2d85dbec6b
1 changed files with 2 additions and 4 deletions
6
input.c
6
input.c
|
|
@ -1128,10 +1128,8 @@ key_press_release(struct seat *seat, struct terminal *term, uint32_t serial,
|
||||||
seat->kbd.xkb_compose_state);
|
seat->kbd.xkb_compose_state);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (compose_status == XKB_COMPOSE_COMPOSING) {
|
if (compose_status == XKB_COMPOSE_COMPOSING)
|
||||||
/* TODO: goto maybe_repeat? */
|
goto maybe_repeat;
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
xkb_mod_mask_t mods, consumed;
|
xkb_mod_mask_t mods, consumed;
|
||||||
get_current_modifiers(seat, &mods, &consumed, key);
|
get_current_modifiers(seat, &mods, &consumed, key);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue