return 1;
}
+ if (client->fullscreen) {
+ LOG("Client is in fullscreen mode\n");
+
+ Rect child_rect = client->container->workspace->rect;
+ child_rect.x = child_rect.y = 0;
+ fake_configure_notify(conn, child_rect, client->child);
+
+ return 1;
+ }
+
/* Floating clients can be reconfigured */
if (client_is_floating(client)) {
i3Font *font = load_font(conn, config.font);
return 1;
}
- if (client->fullscreen) {
- LOG("Client is in fullscreen mode\n");
-
- Rect child_rect = client->container->workspace->rect;
- child_rect.x = child_rect.y = 0;
- fake_configure_notify(conn, child_rect, client->child);
-
- return 1;
- }
-
fake_absolute_configure_notify(conn, client);
return 1;