From: Michael Stapelberg Date: Mon, 13 Apr 2009 21:27:47 +0000 (+0200) Subject: Bugfix: Fix unmapping of dock windows (Thanks Mirko) X-Git-Tag: 3.a-bf1~40 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=65b858b9c57a061ea75e2b538761f261a20b865e;p=i3%2Fi3 Bugfix: Fix unmapping of dock windows (Thanks Mirko) --- diff --git a/src/handlers.c b/src/handlers.c index a9aaf8c3..e92d062e 100644 --- a/src/handlers.c +++ b/src/handlers.c @@ -632,10 +632,10 @@ int handle_unmap_notify_event(void *data, xcb_connection_t *conn, xcb_unmap_noti xcb_flush(conn); table_remove(byParent, client->frame); - if (client->container != NULL) + if (client->container != NULL) { cleanup_table(conn, client->container->workspace); - - fix_colrowspan(conn, client->container->workspace); + fix_colrowspan(conn, client->container->workspace); + } /* Let’s see how many clients there are left on the workspace to delete it if it’s empty */ bool workspace_empty = true;