input: bug: account for margins when converting mouse coords to row/col

This commit is contained in:
Daniel Eklöf 2019-08-30 21:30:27 +02:00
parent 7c4c41fbae
commit 05888b4706
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -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;