From c88913a1665e6a67ca9af2d168494a3ff8877294 Mon Sep 17 00:00:00 2001 From: okan Date: Mon, 7 Dec 2009 19:48:08 +0000 Subject: fix off-by-one where a mere click would select the first item inside a menu from Thomas Pfaff ok oga@ --- menu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'menu.c') diff --git a/menu.c b/menu.c index 83be09b..2d02a64 100644 --- a/menu.c +++ b/menu.c @@ -398,7 +398,7 @@ menu_calc_entry(struct screen_ctx *sc, struct menu_ctx *mc, int x, int y) entry = y / font_height(); /* in bounds? */ - if (x < 0 || x > mc->width || y < 0 || y > font_height() * mc->num || + if (x <= 0 || x > mc->width || y <= 0 || y > font_height() * mc->num || entry < 0 || entry >= mc->num) entry = -1; -- cgit v1.2.3-2-gb3c3