From 9f52ac056fe4266a872c19c7456923d37e566ab0 Mon Sep 17 00:00:00 2001 From: rodin Date: Tue, 18 May 2010 14:05:28 +0000 Subject: [PATCH] Added missing buffer flush. --- libchimara/event.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libchimara/event.c b/libchimara/event.c index 366c189..4089b79 100644 --- a/libchimara/event.c +++ b/libchimara/event.c @@ -150,7 +150,7 @@ glk_select(event_t *event) /* Flush all window buffers */ winid_t win; for(win = glk_window_iterate(NULL, NULL); win != NULL; win = glk_window_iterate(win, NULL)) { - if(win->type == wintype_TextBuffer) + if(win->type == wintype_TextBuffer || win->type == wintype_TextGrid) flush_window_buffer(win); } -- 2.30.2