diff options
author | emersion <contact@emersion.fr> | 2018-06-24 19:21:02 +0100 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2018-06-24 19:21:02 +0100 |
commit | eeb38d65cbf5c8452c449b9f5e003bd255ca6a53 (patch) | |
tree | 48a8b193d148ac752a286604fc3a8ec4b836094c | |
parent | cda66e9a263d8467b6d1857808305d5e9f7bc3cd (diff) |
xwayland: accept configure requests from floating views
-rw-r--r-- | sway/desktop/xwayland.c | 8 |
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) { |