1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-22 04:56:12 +03:00

fix: disable mouse reporting for RIS/ResetTerminal sequence

This commit is contained in:
Wez Furlong 2023-03-23 12:01:24 -07:00
parent f2a2d099bb
commit 897237cc97
No known key found for this signature in database
GPG Key ID: 7A7F66A31EC9B387
2 changed files with 3 additions and 0 deletions

View File

@ -45,6 +45,8 @@ As features stabilize some brief notes about them will accumulate here.
#3303 #2879 #3323
* `window_frame.border_XXX` not correctly accounted for when initially sizing
the window, or when applying font scaling to a window. #3333
* `RIS` escape sequence (and `ResetTerminal` action) didn't disable mouse
event reporting.
### 20230320-124340-559cb7b0

View File

@ -678,6 +678,7 @@ impl<'a> Performer<'a> {
self.application_keypad = false;
self.bracketed_paste = false;
self.focus_tracking = false;
self.mouse_tracking = false;
self.mouse_encoding = MouseEncoding::X10;
self.keyboard_encoding = KeyboardEncoding::Xterm;
self.sixel_scrolls_right = false;