commit 787f08da7ff9ecb325def2e3a44dc5043d7e2753
parent 8392eae40f17e550338b8b7058d8e9c1a6ad4f78
Author: Ryan Dwyer <ryandwyer1@gmail.com>
Date: Thu, 2 Aug 2018 23:34:26 +1000
Convert toplevel coordinates to output-local
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/sway/desktop/render.c b/sway/desktop/render.c
@@ -194,7 +194,8 @@ static void render_view_toplevels(struct sway_view *view,
};
// Render all toplevels without descending into popups
output_surface_for_each_surface(output, view->surface,
- view->swayc->current.view_x, view->swayc->current.view_y,
+ view->swayc->current.view_x - output->wlr_output->lx,
+ view->swayc->current.view_y - output->wlr_output->ly,
render_surface_iterator, &data);
}