vt(4): Make sure pressing the extend button updates the current selection.

MFC after:	1 week
Sponsored by:	NVIDIA Networking
This commit is contained in:
Hans Petter Selasky 2022-10-05 11:40:01 +02:00
parent fbc9f1b2d6
commit 4ea90153ac

View File

@ -2191,7 +2191,7 @@ vt_mouse_event(int type, int x, int y, int event, int cnt, int mlevel)
vd->vd_mx = x;
vd->vd_my = y;
if (vd->vd_mstate & MOUSE_BUTTON1DOWN)
if (vd->vd_mstate & (MOUSE_BUTTON1DOWN | VT_MOUSE_EXTENDBUTTON))
vtbuf_set_mark(&vw->vw_buf, VTB_MARK_MOVE,
vd->vd_mx / vf->vf_width,
vd->vd_my / vf->vf_height);