]> git.sur5r.net Git - i3/i3/commitdiff
Bugfix: Use ->workspace instead of ->container
authorMichael Stapelberg <michael@stapelberg.de>
Sat, 27 Jun 2009 23:58:00 +0000 (01:58 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Sat, 27 Jun 2009 23:58:00 +0000 (01:58 +0200)
src/handlers.c

index 5a1d6666a519f2b7ef371821ea659e746d821339..d56a3c31ad3947d3542da764c7769f55450fd340 100644 (file)
@@ -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);