aboutsummaryrefslogtreecommitdiff
path: root/sway/desktop/xwayland.c
diff options
context:
space:
mode:
authorKenny Levinsen <kl@kl.wtf>2021-02-08 01:45:50 +0100
committerSimon Ser <contact@emersion.fr>2021-02-09 09:37:10 +0100
commit63a663516362646bd8e2a641c0aa0574f888cca3 (patch)
tree2df58443a0a67a0415514fe1b80b178fb77f963d /sway/desktop/xwayland.c
parent82b1019658cea14e508de04e49d23c8f9c744159 (diff)
view: Read geometry directly in view_update_size
Diffstat (limited to 'sway/desktop/xwayland.c')
-rw-r--r--sway/desktop/xwayland.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/desktop/xwayland.c b/sway/desktop/xwayland.c
index 8b39cf50..4cd5f9d0 100644
--- a/sway/desktop/xwayland.c
+++ b/sway/desktop/xwayland.c
@@ -412,7 +412,7 @@ static void handle_commit(struct wl_listener *listener, void *data) {
desktop_damage_view(view);
memcpy(&view->geometry, &new_geo, sizeof(struct wlr_box));
if (container_is_floating(view->container)) {
- view_update_size(view, new_geo.width, new_geo.height);
+ view_update_size(view);
transaction_commit_dirty();
} else {
view_center_surface(view);