diff options
author | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2006-12-05 06:42:22 +0000 |
---|---|---|
committer | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2006-12-05 06:42:22 +0000 |
commit | cf703ac9cb87aace17158718dd056e5eff63e887 (patch) | |
tree | b25d3674e04e9fdbbb9627be744acd7dbcd6e956 /src | |
parent | 18a2d98aacb8dc27d06b9fbbe7da09b4fbbe4c7d (diff) |
flush UI for each 100 messages on manual filtering.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@1393 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src')
-rw-r--r-- | src/summaryview.c | 4 |
1 files changed, 2 insertions, 2 deletions
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(); } } |