commit 95901d906ade2c6698eee1f956e105508a21ab79
parent 1989b18ff281cb75f0e62a20e663767a9e82e55d
Author: Kenny Levinsen <kl@kl.wtf>
Date: Tue, 23 Feb 2021 00:46:45 +0100
shells: Update comment about size change on commit
Diffstat:
2 files changed, 6 insertions(+), 3 deletions(-)
diff --git 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) {
new_geo.y != view->geometry.y;
if (new_size) {
- // The view has unexpectedly sent a new size
+ // The client changed its surface size in this commit. For floating
+ // containers, we resize the container to match. For tiling containers,
+ // we only recenter the surface.
desktop_damage_view(view);
memcpy(&view->geometry, &new_geo, sizeof(struct wlr_box));
if (container_is_floating(view->container)) {
diff --git a/sway/desktop/xwayland.c b/sway/desktop/xwayland.c
@@ -407,8 +407,9 @@ static void handle_commit(struct wl_listener *listener, void *data) {
new_geo.y != view->geometry.y;
if (new_size) {
- // The view has unexpectedly sent a new size
- // eg. The Firefox "Save As" dialog when downloading a file
+ // The client changed its surface size in this commit. For floating
+ // containers, we resize the container to match. For tiling containers,
+ // we only recenter the surface.
desktop_damage_view(view);
memcpy(&view->geometry, &new_geo, sizeof(struct wlr_box));
if (container_is_floating(view->container)) {