From 6936490329d266aee84eaf7c7ecf7881683ccc5b Mon Sep 17 00:00:00 2001 From: okan Date: Tue, 22 Mar 2011 10:54:42 +0000 Subject: (0,0) is also inside in the screen; from Sviatoslav Chagaev. ok oga@ --- screen.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'screen.c') diff --git a/screen.c b/screen.c index 9a5ad56..3ef4ccb 100644 --- a/screen.c +++ b/screen.c @@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $Id: screen.c,v 1.26 2010/01/27 03:04:50 okan Exp $ + * $Id: screen.c,v 1.27 2011/03/22 10:54:42 okan Exp $ */ #include @@ -101,8 +101,8 @@ screen_find_xinerama(struct screen_ctx *sc, int x, int y) for (i = 0; i < sc->xinerama_no; i++) { info = &sc->xinerama[i]; - if (x > info->x_org && x < info->x_org + info->width && - y > info->y_org && y < info->y_org + info->height) + if (x >= info->x_org && x < info->x_org + info->width && + y >= info->y_org && y < info->y_org + info->height) return (info); } return (NULL); -- cgit v1.2.3-2-gb3c3