Fix wlr_box_contains_point comparison
This commit is contained in:
parent
3444f43c16
commit
f8a831859f
|
@ -61,8 +61,8 @@ bool wlr_box_contains_point(const struct wlr_box *box, double x, double y) {
|
|||
if (wlr_box_empty(box)) {
|
||||
return false;
|
||||
} else {
|
||||
return x >= box->x && x <= box->x + box->width &&
|
||||
y >= box->y && y <= box->y + box->height;
|
||||
return x >= box->x && x < box->x + box->width &&
|
||||
y >= box->y && y < box->y + box->height;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue