Fix mouse positioning when the pane is not entirely visible.

This commit is contained in:
nicm
2019-05-03 16:51:29 +00:00
parent cf6075fb29
commit fc3d85e34b
3 changed files with 5 additions and 6 deletions

View File

@ -148,7 +148,7 @@ cmd_resize_pane_mouse_update(struct client *c, struct mouse_event *m)
y--;
else if (m->statusat > 0 && y >= (u_int)m->statusat)
y = m->statusat - 1;
ly = m->ly; lx = m->lx;
ly = m->ly + m->oy; lx = m->lx + m->ox;
if (m->statusat == 0 && ly > 0)
ly--;
else if (m->statusat > 0 && ly >= (u_int)m->statusat)