diff options
author | Ryan Dwyer <ryandwyer1@gmail.com> | 2018-08-17 23:11:09 +1000 |
---|---|---|
committer | Ryan Dwyer <ryandwyer1@gmail.com> | 2018-08-18 10:39:38 +1000 |
commit | 4e755c4b123e1dd8478be63ff6b48d2d1ceaa04b (patch) | |
tree | bc63ea4c44379a40a4caf1305cbbcf6269fb5b1b /sway/desktop/xwayland.c | |
parent | 8af4e2e3e67e4e28e9ffad162984c0cc1414d771 (diff) |
Set current size when a floating xwayland view resizes
This avoids sending an unnecessary configure.
Diffstat (limited to 'sway/desktop/xwayland.c')
-rw-r--r-- | sway/desktop/xwayland.c | 2 |
1 files changed, 2 insertions, 0 deletions
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(); } |