diff options
author | Ryan Dwyer <ryandwyer1@gmail.com> | 2018-05-29 23:05:01 +1000 |
---|---|---|
committer | Ryan Dwyer <ryandwyer1@gmail.com> | 2018-05-29 23:05:01 +1000 |
commit | f8a831859f7a4a2725d55c3faa093c1b50382a2b (patch) | |
tree | 0f685c7e0226565c8aa7dbd7e0928b4e83aeda14 | |
parent | 3444f43c16e49ad64fa6f1f11be7baf16b3bf49c (diff) | |
download | wlroots-f8a831859f7a4a2725d55c3faa093c1b50382a2b.tar.xz |
Fix wlr_box_contains_point comparison
-rw-r--r-- | types/wlr_box.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/types/wlr_box.c b/types/wlr_box.c index 2ea743d0..c92b0aa4 100644 --- a/types/wlr_box.c +++ b/types/wlr_box.c @@ -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; } } |