From 05888b4706c55109dccc883274ce5359d7e7c83c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Fri, 30 Aug 2019 21:30:27 +0200 Subject: [PATCH] input: bug: account for margins when converting mouse coords to row/col --- input.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/input.c b/input.c index 76bc5812..07809cfe 100644 --- a/input.c +++ b/input.c @@ -407,8 +407,8 @@ wl_pointer_motion(void *data, struct wl_pointer *wl_pointer, int x = wl_fixed_to_int(surface_x) * 1;//backend->monitor->scale; int y = wl_fixed_to_int(surface_y) * 1;//backend->monitor->scale; - int col = x / term->cell_width; - int row = y / term->cell_height; + int col = (x - term->x_margin) / term->cell_width; + int row = (y - term->y_margin) / term->cell_height; if (col < 0 || row < 0 || col >= term->cols || row >= term->rows) return;