From 4e755c4b123e1dd8478be63ff6b48d2d1ceaa04b Mon Sep 17 00:00:00 2001 From: Ryan Dwyer Date: Fri, 17 Aug 2018 23:11:09 +1000 Subject: Set current size when a floating xwayland view resizes This avoids sending an unnecessary configure. --- sway/desktop/xwayland.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'sway/desktop/xwayland.c') diff --git a/sway/desktop/xwayland.c b/sway/desktop/xwayland.c index b5df907d..e0c44b39 100644 --- a/sway/desktop/xwayland.c +++ b/sway/desktop/xwayland.c @@ -293,6 +293,8 @@ static void handle_commit(struct wl_listener *listener, void *data) { // It maps at a small size then changes afterwards. view->width = state->width; view->height = state->height; + view->swayc->current.view_width = state->width; + view->swayc->current.view_height = state->height; container_set_geometry_from_floating_view(view->swayc); transaction_commit_dirty(); } -- cgit v1.2.3-54-g00ecf