mirror of
https://github.com/swaywm/sway.git
synced 2024-11-23 00:11:28 +00:00
Correctly reset border geometry
This commit is contained in:
parent
f0b33df384
commit
66e8b4d5de
|
@ -469,8 +469,8 @@ void update_geometry(swayc_t *container) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (swayc_is_fullscreen(container)) {
|
if (swayc_is_fullscreen(container)) {
|
||||||
container->border_geometry = (const struct wlc_geometry){0};
|
container->border_geometry = wlc_geometry_zero;
|
||||||
container->title_bar_geometry = (const struct wlc_geometry){0};
|
container->title_bar_geometry = wlc_geometry_zero;
|
||||||
} else if (container->is_floating) { // allocate border for floating window
|
} else if (container->is_floating) { // allocate border for floating window
|
||||||
update_border_geometry_floating(container, &geometry);
|
update_border_geometry_floating(container, &geometry);
|
||||||
} else if (!container->is_floating) { // allocate border for titled window
|
} else if (!container->is_floating) { // allocate border for titled window
|
||||||
|
|
Loading…
Reference in a new issue