From: Michael Stapelberg Date: Fri, 26 Nov 2010 19:15:08 +0000 (+0100) Subject: Bugfix: always reset state->initial to false, not only for different stacking order X-Git-Tag: tree-pr1~61 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=b2db9ac797a9b5adc55c17e57b54ca34eaeb57ab;p=i3%2Fi3 Bugfix: always reset state->initial to false, not only for different stacking order As initial may be set to true again after initializing the window, we need to ensure that it is properly cleared. Otherwise, this leads to ghost windows when unmapping (such as the Xpdf about dialog) due to i3 issuing MapWindow after an Unmap happened but before i3 actually received/handled the UnmapNotify. --- diff --git a/src/x.c b/src/x.c index c489dca7..192e7b89 100644 --- a/src/x.c +++ b/src/x.c @@ -539,7 +539,6 @@ void x_push_changes(Con *con) { if (prev != old_prev) order_changed = true; if ((state->initial || order_changed) && prev != CIRCLEQ_END(&state_head)) { - state->initial = false; LOG("Stacking 0x%08x above 0x%08x\n", prev->id, state->id); uint32_t mask = 0; mask |= XCB_CONFIG_WINDOW_SIBLING; @@ -548,6 +547,7 @@ void x_push_changes(Con *con) { xcb_configure_window(conn, prev->id, mask, values); } + state->initial = false; } xcb_window_t to_focus = focused->frame;