(redisplay_window): Fix flicker on vertical line between

windows.  Update vertical line after drawing window fringes, but
only if actually drawing any bitmaps--or there is no fringe.
This commit is contained in:
Kim F. Storm 2004-10-07 21:58:16 +00:00
parent 11491cbb2a
commit 0a1527d6b5

View file

@ -12220,7 +12220,8 @@ redisplay_window (window, just_this_one_p)
{
update_begin (f);
BLOCK_INPUT;
draw_window_fringes (w);
if (draw_window_fringes (w, 1))
x_draw_vertical_border (w);
UNBLOCK_INPUT;
update_end (f);
}