From: Michael Stapelberg Date: Sat, 27 Jun 2009 23:58:00 +0000 (+0200) Subject: Bugfix: Use ->workspace instead of ->container X-Git-Tag: 3.c~65 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=0305c1dc0ea21d5377ff5f0adf141e418626df50;p=i3%2Fi3 Bugfix: Use ->workspace instead of ->container --- diff --git a/src/handlers.c b/src/handlers.c index 5a1d6666..d56a3c31 100644 --- a/src/handlers.c +++ b/src/handlers.c @@ -481,7 +481,7 @@ int handle_configure_request(void *prophs, xcb_connection_t *conn, xcb_configure if (client->fullscreen) { LOG("Client is in fullscreen mode\n"); - Rect child_rect = client->container->workspace->rect; + Rect child_rect = client->workspace->rect; child_rect.x = child_rect.y = 0; fake_configure_notify(conn, child_rect, client->child);