commit 1c57f029f463b6e53abb245a24dd8c02edf6722e
parent f4a993933941b89c42524547c9d0d6185a77133a
Author: Kebigon <git@kebigon.xyz>
Date: Mon, 20 Jul 2020 18:11:50 +0900
Do not remove the client on unmap events
Diffstat:
1 file changed, 0 insertions(+), 3 deletions(-)
diff --git a/kbgwm.c b/kbgwm.c
@@ -544,9 +544,6 @@ void handle_motion_notify(xcb_motion_notify_event_t* event)
void handle_unmap_notify(xcb_unmap_notify_event_t* event)
{
printf("XCB_UNMAP_NOTIFY: window=%d\n", event->window);
- client_remove_all_workspaces(event->window);
- if (focused_client != NULL)
- focus_apply();
}
/*