Bugfix: Don’t render containers which are not visible upon hint changes

This commit is contained in:
Michael Stapelberg 2010-03-29 19:18:45 +02:00
parent a6d22f005d
commit 6016b6333f
1 changed files with 1 additions and 1 deletions

View File

@ -960,7 +960,7 @@ int handle_normal_hints(void *data, xcb_connection_t *conn, uint8_t state, xcb_w
client->force_reconfigure = true;
if (client->container != NULL) {
if (client->container != NULL && workspace_is_visible(client->workspace)) {
render_container(conn, client->container);
xcb_flush(conn);
}