mirror of
https://github.com/swaywm/sway.git
synced 2025-11-09 13:29:49 -05:00
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
This commit is contained in:
parent
788b715776
commit
cf7c77e56a
3 changed files with 3 additions and 3 deletions
|
|
@ -979,7 +979,7 @@ void container_discover_outputs(struct sway_container *con) {
|
|||
output_get_box(output, &output_box);
|
||||
struct wlr_box intersection;
|
||||
bool intersects =
|
||||
wlr_box_intersection(&con_box, &output_box, &intersection);
|
||||
wlr_box_intersection(&intersection, &con_box, &output_box);
|
||||
int index = list_find(con->outputs, output);
|
||||
|
||||
if (intersects && index == -1) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue