From c79114177c3137b1a8b09499f7514b27be3e5840 Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Fri, 15 Dec 2000 17:14:07 +0000 Subject: [PATCH] (expose_window): Don't redraw the window that's currently being updated. --- src/xterm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xterm.c b/src/xterm.c index daf2e90ea95..d45dfd8c7e1 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -5819,7 +5819,7 @@ expose_window (w, r) happen when toolkit scroll bars are used and a window is split. Reconfiguring the scroll bar will generate an expose for a newly created window. */ - if (w->current_matrix == NULL) + if (w->current_matrix == NULL || w == updated_window) return; TRACE ((stderr, "expose_window (%d, %d, %d, %d)\n", -- 2.39.2