From f8a831859f7a4a2725d55c3faa093c1b50382a2b Mon Sep 17 00:00:00 2001 From: Ryan Dwyer Date: Tue, 29 May 2018 23:05:01 +1000 Subject: [PATCH] Fix wlr_box_contains_point comparison --- types/wlr_box.c | 4 ++-- 1 file 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; } }