aboutsummaryrefslogtreecommitdiff
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
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
-rw-r--r--ChangeLog6
-rw-r--r--ChangeLog.ja6
-rw-r--r--src/summaryview.c4
3 files changed, 14 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 023b0474..0c04dda1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2006-12-05
+ * src/summaryview.c:
+ summary_filter_func()
+ summary_filter_junk_func(): flush UI for each 100 messages.
+
+2006-12-05
+
* src/send_message.c: send_send_data_progressive(): win32: force
flushing of UI (fixes the dialog not updated while sending large
messages).
diff --git a/ChangeLog.ja b/ChangeLog.ja
index b689abab..37eb7af1 100644
--- a/ChangeLog.ja
+++ b/ChangeLog.ja
@@ -1,5 +1,11 @@
2006-12-05
+ * src/summaryview.c:
+ summary_filter_func()
+ summary_filter_junk_func(): 100 メッセージ毎に UI をフラッシュ。
+
+2006-12-05
+
* src/send_message.c: send_send_data_progressive(): win32: 強制的に
UI を更新するようにした(大きなメッセージの送信時にダイアログが更新
されなかったのを修正)。
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();
}
}