aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sway/desktop/xwayland.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/desktop/xwayland.c b/sway/desktop/xwayland.c
index eb39dc4b..df5f6698 100644
--- a/sway/desktop/xwayland.c
+++ b/sway/desktop/xwayland.c
@@ -335,9 +335,9 @@ static void handle_request_configure(struct wl_listener *listener, void *data) {
335 return; 335 return;
336 } 336 }
337 if (container_is_floating(view->swayc)) { 337 if (container_is_floating(view->swayc)) {
338 configure(view, view->swayc->x, view->swayc->y, ev->width, ev->height); 338 configure(view, view->x, view->y, ev->width, ev->height);
339 } else { 339 } else {
340 configure(view, view->swayc->x, view->swayc->y, 340 configure(view, view->x, view->y,
341 view->width, view->height); 341 view->width, view->height);
342 } 342 }
343} 343}