aboutsummaryrefslogtreecommitdiff
path: root/src/summaryview.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2006-12-05 06:42:22 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2006-12-05 06:42:22 +0000
commitcf703ac9cb87aace17158718dd056e5eff63e887 (patch)
treeb25d3674e04e9fdbbb9627be744acd7dbcd6e956 /src/summaryview.c
parent18a2d98aacb8dc27d06b9fbbe7da09b4fbbe4c7d (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/summaryview.c')
-rw-r--r--src/summaryview.c4
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();
}
}