Do not unintentionally turn off all mouse mode when button is also present.

pull/3212/head
nicm 2022-06-03 08:09:16 +00:00
parent 18838fbc87
commit 3edda3c5e7
1 changed files with 1 additions and 1 deletions

2
tty.c
View File

@ -814,7 +814,7 @@ tty_update_mode(struct tty *tty, int mode, struct screen *s)
tty_puts(tty, "\033[?1006h");
if (mode & MODE_MOUSE_ALL)
tty_puts(tty, "\033[?1000h\033[?1002h\033[?1003h");
if (mode & MODE_MOUSE_BUTTON)
else if (mode & MODE_MOUSE_BUTTON)
tty_puts(tty, "\033[?1000h\033[?1002h");
else if (mode & MODE_MOUSE_STANDARD)
tty_puts(tty, "\033[?1000h");