mirror of
https://github.com/macvim-dev/macvim.git
synced 2026-06-11 15:37:29 +02:00
Fix display corruption when dragging divider
This fixes a bug where the screen would get corrupted when dragging a horizontal divider in full-screen mode.
This commit is contained in:
@@ -5559,7 +5559,12 @@ win_new_height(wp, height)
|
||||
wp->w_prev_fraction_row = wp->w_wrow;
|
||||
|
||||
win_comp_scroll(wp);
|
||||
#ifdef FEAT_GUI_MACVIM
|
||||
/* The view may have moved, so clear all or display may get corrupted. */
|
||||
redraw_win_later(wp, CLEAR);
|
||||
#else
|
||||
redraw_win_later(wp, SOME_VALID);
|
||||
#endif
|
||||
#ifdef FEAT_WINDOWS
|
||||
wp->w_redr_status = TRUE;
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user