diff options
author | Brian Ashworth <bosrsf04@gmail.com> | 2018-12-22 11:59:41 -0500 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2018-12-22 18:54:08 +0100 |
commit | cf7c77e56ab895efd3b113debd53fc5881dd7205 (patch) | |
tree | 562a496197417bc093e560303d8b30c30eb91452 /sway/desktop/render.c | |
parent | 788b715776b6d8c1ed3c67929a17a4d0d4079458 (diff) |
Fix wlr_box_intersection args for wlroots 1441
The fix pushed to master missed wlr_box_intersection. This just fixes
those lines so sway renders properly again
Diffstat (limited to 'sway/desktop/render.c')
-rw-r--r-- | sway/desktop/render.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/desktop/render.c b/sway/desktop/render.c index 1260d85a..14881e96 100644 --- a/sway/desktop/render.c +++ b/sway/desktop/render.c @@ -261,7 +261,7 @@ static void render_saved_view(struct sway_view *view, }; struct wlr_box intersection; - bool intersects = wlr_box_intersection(&output_box, &box, &intersection); + bool intersects = wlr_box_intersection(&intersection, &output_box, &box); if (!intersects) { return; } |