diff options
Diffstat (limited to 'sway/desktop/xwayland.c')
| -rw-r--r-- | sway/desktop/xwayland.c | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/sway/desktop/xwayland.c b/sway/desktop/xwayland.c index 4cd5f9d0..3ed65083 100644 --- a/sway/desktop/xwayland.c +++ b/sway/desktop/xwayland.c @@ -527,10 +527,10 @@ static void handle_request_configure(struct wl_listener *listener, void *data) {  		view->natural_height = ev->height;  		container_floating_resize_and_center(view->container); -		configure(view, view->container->content_x, -				view->container->content_y, -				view->container->content_width, -				view->container->content_height); +		configure(view, view->container->pending.content_x, +				view->container->pending.content_y, +				view->container->pending.content_width, +				view->container->pending.content_height);  		node_set_dirty(&view->container->node);  	} else {  		configure(view, view->container->current.content_x, | 
