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;