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:
Bjorn Winckler
2010-07-05 18:02:03 +02:00
parent 1152da7c66
commit ba4486860e
+5
View File
@@ -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