mirror of
https://github.com/neovim/neovim.git
synced 2025-10-12 12:56:04 +00:00
vim-patch:9.0.0206: redraw flags are not named specifically (#19913)
Problem: Redraw flags are not named specifically.
Solution: Prefix "UPD_" to the flags, for UPDate_screen().
a4d158b3c8
This commit is contained in:
@@ -1375,7 +1375,7 @@ static bool send_mouse_event(Terminal *term, int c)
|
||||
curwin->w_redr_status = true;
|
||||
curwin = save_curwin;
|
||||
curbuf = curwin->w_buffer;
|
||||
redraw_later(mouse_win, NOT_VALID);
|
||||
redraw_later(mouse_win, UPD_NOT_VALID);
|
||||
invalidate_terminal(term, -1, -1);
|
||||
// Only need to exit focus if the scrolled window is the terminal window
|
||||
return mouse_win == curwin;
|
||||
|
Reference in New Issue
Block a user