Do not stop drag on double or triple click, GitHub issue 4272.

This commit is contained in:
nicm 2024-11-27 10:10:20 +00:00
parent 6f7db82b18
commit feb090abb3

View File

@ -884,7 +884,11 @@ have_event:
m->wp = -1;
/* Stop dragging if needed. */
if (type != DRAG && type != WHEEL && c->tty.mouse_drag_flag != 0) {
if (type != DRAG &&
type != WHEEL &&
type != DOUBLE &&
type != TRIPLE &&
c->tty.mouse_drag_flag != 0) {
if (c->tty.mouse_drag_release != NULL)
c->tty.mouse_drag_release(c, m);