insert client into tree on map request

This commit is contained in:
Akos Horvath 2023-06-01 15:20:51 +02:00
parent 6ae7143655
commit 00821acf12

View File

@ -180,6 +180,8 @@ void wm_maprequest_handler(Wm *wm, XMapRequestEvent e)
c = wm_client_create(wm, e.window);
RETURN_IF_NULL(c);
wm_ws_tree_insert_client(wm, c->ws, c);
wm_client_handle_window_types(wm, c, e);
wm_layout(wm, c->m);