aboutsummaryrefslogtreecommitdiffstats
path: root/sway/desktop/xdg_shell.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/desktop/xdg_shell.c')
-rw-r--r--sway/desktop/xdg_shell.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sway/desktop/xdg_shell.c b/sway/desktop/xdg_shell.c
index 0ac2c55d..843ff90a 100644
--- a/sway/desktop/xdg_shell.c
+++ b/sway/desktop/xdg_shell.c
@@ -293,7 +293,9 @@ static void handle_commit(struct wl_listener *listener, void *data) {
293 new_geo.y != view->geometry.y; 293 new_geo.y != view->geometry.y;
294 294
295 if (new_size) { 295 if (new_size) {
296 // The view has unexpectedly sent a new size 296 // The client changed its surface size in this commit. For floating
297 // containers, we resize the container to match. For tiling containers,
298 // we only recenter the surface.
297 desktop_damage_view(view); 299 desktop_damage_view(view);
298 memcpy(&view->geometry, &new_geo, sizeof(struct wlr_box)); 300 memcpy(&view->geometry, &new_geo, sizeof(struct wlr_box));
299 if (container_is_floating(view->container)) { 301 if (container_is_floating(view->container)) {