input: enable repeat while COMPOSING

This commit is contained in:
Daniel Eklöf 2021-11-20 19:23:39 +01:00
parent 9f3dba683e
commit 2d85dbec6b
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -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);