client_unmanage: Update WM_STATE later
According to ICCCM, if a client wants to reuse one of its windows, it has to wait until the WM updated WM_STATE. This means updating WM_STATE should be the very last thing we do when unmanaging a window. Signed-off-by: Uli Schlachter <psychon@znc.in>
This commit is contained in:
parent
1f36a3d4de
commit
c36ee7fea8
|
@ -1041,8 +1041,6 @@ client_unmanage(client_t *c)
|
|||
if(strut_has_value(&c->strut))
|
||||
screen_emit_signal(globalconf.L, c->screen, "property::workarea", 0);
|
||||
|
||||
xwindow_set_state(c->window, XCB_WM_STATE_WITHDRAWN);
|
||||
|
||||
ewmh_update_net_client_list(c->phys_screen);
|
||||
|
||||
xcb_screen_t *s = xutil_screen_get(globalconf.connection, c->phys_screen);
|
||||
|
@ -1055,6 +1053,10 @@ client_unmanage(client_t *c)
|
|||
* after a restart anymore. */
|
||||
xcb_change_save_set(globalconf.connection, XCB_SET_MODE_DELETE, c->window);
|
||||
|
||||
/* Do this last to avoid races with clients. According to ICCCM, clients
|
||||
* arent allowed to re-use the window until after this. */
|
||||
xwindow_set_state(c->window, XCB_WM_STATE_WITHDRAWN);
|
||||
|
||||
/* set client as invalid */
|
||||
c->invalid = true;
|
||||
|
||||
|
|
Loading…
Reference in New Issue