mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -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);
|
||||
}
|
||||
|
||||
if (compose_status == XKB_COMPOSE_COMPOSING) {
|
||||
/* TODO: goto maybe_repeat? */
|
||||
return;
|
||||
}
|
||||
if (compose_status == XKB_COMPOSE_COMPOSING)
|
||||
goto maybe_repeat;
|
||||
|
||||
xkb_mod_mask_t mods, consumed;
|
||||
get_current_modifiers(seat, &mods, &consumed, key);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue