Bugfix: Missing flush after render_container()
This commit is contained in:
parent
96ac9f9066
commit
fc3338d3c1
|
@ -681,6 +681,8 @@ int handle_normal_hints(void *data, xcb_connection_t *conn, uint8_t state, xcb_w
|
||||||
|
|
||||||
client->force_reconfigure = true;
|
client->force_reconfigure = true;
|
||||||
|
|
||||||
if (client->container != NULL)
|
if (client->container != NULL) {
|
||||||
render_container(conn, client->container);
|
render_container(conn, client->container);
|
||||||
|
xcb_flush(conn);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue