fix(terminal): include modifiers when forwarding mouse (#24549)

This commit is contained in:
zeertzjq
2023-08-04 09:34:13 +08:00
committed by GitHub
parent c4f775fa57
commit 0a7fda6fa0
2 changed files with 7 additions and 1 deletions

View File

@@ -1444,7 +1444,9 @@ static bool send_mouse_event(Terminal *term, int c)
return false;
}
mouse_action(term, button, row, col - offset, pressed, 0);
VTermModifier mod = VTERM_MOD_NONE;
convert_modifiers(c, &mod);
mouse_action(term, button, row, col - offset, pressed, mod);
return false;
}