From 5b51dfd3050c65677e3d13eb7585202c8e1664ef Mon Sep 17 00:00:00 2001 From: Marijn van Vliet Date: Tue, 18 May 2010 14:05:28 +0000 Subject: [PATCH] Added missing buffer flush. git-svn-id: http://lassie.dyndns-server.com/svn/gargoyle-gtk@277 ddfedd41-794f-dd11-ae45-00112f111e67 --- 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