diff --git a/CHANGELOG.md b/CHANGELOG.md index d87b632f..d16ba08b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -61,6 +61,8 @@ * Fix crashes after enabling CSD at runtime when `csd.size` is 0. * Convert `\r` to `\n` when reading clipboard data (https://codeberg.org/dnkl/foot/issues/752). +* Clipboard occasionally ceasing to work, until window has been + re-focused (https://codeberg.org/dnkl/foot/issues/753). ### Security diff --git a/input.c b/input.c index aed9675e..7ffdd91f 100644 --- a/input.c +++ b/input.c @@ -954,6 +954,7 @@ static void key_press_release(struct seat *seat, struct terminal *term, uint32_t serial, uint32_t key, uint32_t state) { + seat->kbd.serial = serial; if (seat->kbd.xkb == NULL || seat->kbd.xkb_keymap == NULL || seat->kbd.xkb_state == NULL) @@ -1723,6 +1724,7 @@ wl_pointer_button(void *data, struct wl_pointer *wl_pointer, struct wayland *wayl = seat->wayl; struct terminal *term = seat->mouse_focus; + seat->pointer.serial = serial; seat->pointer.hidden = false; xassert(term != NULL);