From 84d20ca5cb1f021e8f5b080472e2f0e64aa9b704 Mon Sep 17 00:00:00 2001 From: project-repo Date: Fri, 9 Oct 2020 13:58:00 +0200 Subject: [PATCH] Fix position of xwayland views on multiple outputs --- xwayland.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xwayland.c b/xwayland.c index fd4a938..e544317 100644 --- a/xwayland.c +++ b/xwayland.c @@ -109,7 +109,7 @@ maximize(struct cg_view *view, int width, int height) { } wlr_xwayland_surface_configure(xwayland_view->xwayland_surface, - view->ox + box->x, view->oy + box->y, width, + view->ox, view->oy, width, height); wlr_xwayland_surface_set_maximized(xwayland_view->xwayland_surface, true); }