changeset 57372:1caa36568da6

(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.
author Kim F. Storm <storm@cua.dk>
date Thu, 07 Oct 2004 21:58:16 +0000
parents 3c27c0be625d
children 38e45bf0128a
files src/xdisp.c
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/xdisp.c	Thu Oct 07 21:57:53 2004 +0000
+++ b/src/xdisp.c	Thu Oct 07 21:58:16 2004 +0000
@@ -12220,7 +12220,8 @@
     {
       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);
     }