diff src/w32term.c @ 57373:38e45bf0128a

(x_update_window_end): 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:59:39 +0000
parents 4cec0243673a
children 9f3d14375fe1 4f2f1522636c ff0e824afa37
line wrap: on
line diff
--- a/src/w32term.c	Thu Oct 07 21:58:16 2004 +0000
+++ b/src/w32term.c	Thu Oct 07 21:59:39 2004 +0000
@@ -540,9 +540,8 @@
 				output_cursor.vpos,
 				output_cursor.x, output_cursor.y);
 
-      x_draw_vertical_border (w);
-
-      draw_window_fringes (w);
+      if (draw_window_fringes (w, 1))
+	x_draw_vertical_border (w);
 
       UNBLOCK_INPUT;
     }