From 2fb9f53483eadc216e305be554291b1318dea6a2 Mon Sep 17 00:00:00 2001 From: "Devin J. Pohly" Date: Sun, 26 Apr 2020 11:47:06 -0500 Subject: [PATCH] save lines in keyboardfocus --- dwl.c | 23 ++++++++++------------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/dwl.c b/dwl.c index f30d2bf..289503c 100644 --- a/dwl.c +++ b/dwl.c @@ -553,25 +553,22 @@ keyboardfocus(Client *c, struct wlr_surface *surface) seat->keyboard_state.focused_surface); wlr_xdg_toplevel_set_activated(previous, false); } - if (!c) { - wlr_seat_keyboard_clear_focus(seat); - return; - } - - /* Move the client to the front of the focus stack */ - wl_list_remove(&c->flink); - wl_list_insert(&fstack, &c->flink); - /* Activate the new surface */ - wlr_xdg_toplevel_set_activated(c->xdg_surface, true); /* * Tell the seat to have the keyboard enter this surface. * wlroots will keep track of this and automatically send key * events to the appropriate clients without additional work on - * your part. + * your part. If surface == NULL, this will clear focus. */ struct wlr_keyboard *kb = wlr_seat_get_keyboard(seat); - wlr_seat_keyboard_notify_enter(seat, c->xdg_surface->surface, - kb->keycodes, kb->num_keycodes, &kb->modifiers); + wlr_seat_keyboard_notify_enter(seat, surface, + kb->keycodes, kb->num_keycodes, &kb->modifiers); + if (c) { + /* Move the client to the front of the focus stack */ + wl_list_remove(&c->flink); + wl_list_insert(&fstack, &c->flink); + /* Activate the new surface */ + wlr_xdg_toplevel_set_activated(c->xdg_surface, true); + } } void