From cf703ac9cb87aace17158718dd056e5eff63e887 Mon Sep 17 00:00:00 2001 From: hiro Date: Tue, 5 Dec 2006 06:42:22 +0000 Subject: flush UI for each 100 messages on manual filtering. git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@1393 ee746299-78ed-0310-b773-934348b2243d --- src/summaryview.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/summaryview.c') diff --git a/src/summaryview.c b/src/summaryview.c index 02f9343a..57142c81 100644 --- a/src/summaryview.c +++ b/src/summaryview.c @@ -4362,7 +4362,7 @@ static gboolean summary_filter_func(GtkTreeModel *model, GtkTreePath *path, summaryview->flt_count, summaryview->flt_total); STATUSBAR_POP(summaryview->mainwin); STATUSBAR_PUSH(summaryview->mainwin, msg); - if ((summaryview->flt_count % 500) == 0) { + if ((summaryview->flt_count % 100) == 0) { GTK_EVENTS_FLUSH(); } } @@ -4423,7 +4423,7 @@ static gboolean summary_filter_junk_func(GtkTreeModel *model, GtkTreePath *path, summaryview->flt_count, summaryview->flt_total); STATUSBAR_POP(summaryview->mainwin); STATUSBAR_PUSH(summaryview->mainwin, msg); - if ((summaryview->flt_count % 500) == 0) { + if ((summaryview->flt_count % 100) == 0) { GTK_EVENTS_FLUSH(); } } -- cgit v1.2.3