aboutsummaryrefslogtreecommitdiff
path: root/sway/desktop
diff options
context:
space:
mode:
Diffstat (limited to 'sway/desktop')
-rw-r--r--sway/desktop/xwayland.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/sway/desktop/xwayland.c b/sway/desktop/xwayland.c
index 2c3848cd..eb39dc4b 100644
--- a/sway/desktop/xwayland.c
+++ b/sway/desktop/xwayland.c
@@ -334,8 +334,12 @@ static void handle_request_configure(struct wl_listener *listener, void *data) {
ev->width, ev->height);
return;
}
- // TODO: Let floating views do whatever
- configure(view, view->swayc->x, view->swayc->y, view->width, view->height);
+ if (container_is_floating(view->swayc)) {
+ configure(view, view->swayc->x, view->swayc->y, ev->width, ev->height);
+ } else {
+ configure(view, view->swayc->x, view->swayc->y,
+ view->width, view->height);
+ }
}
static void handle_request_fullscreen(struct wl_listener *listener, void *data) {