aboutsummaryrefslogtreecommitdiff
path: root/src/summaryview.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2006-08-15 02:16:17 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2006-08-15 02:16:17 +0000
commitfd4fa414a182c6ca1a75ec7244cc8e6ad409c56a (patch)
tree6b422e90992144087fdc9b4c793cc4077da8c6a6 /src/summaryview.c
parentaa4fdbfbc9a10cb344e3bad9d58fa438bbb4cda0 (diff)
fixed manual junk filtering.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@1125 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/summaryview.c')
-rw-r--r--src/summaryview.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/summaryview.c b/src/summaryview.c
index 38d30e9d..28b6341f 100644
--- a/src/summaryview.c
+++ b/src/summaryview.c
@@ -4384,7 +4384,8 @@ static gboolean summary_filter_junk_func(GtkTreeModel *model, GtkTreePath *path,
fltinfo = filter_info_new();
fltinfo->flags = msginfo->flags;
- filter_apply_msginfo(prefs_common.junk_fltlist, msginfo, fltinfo);
+ filter_apply_msginfo(prefs_common.manual_junk_fltlist,
+ msginfo, fltinfo);
if (fltinfo->actions[FLT_ACTION_MOVE] ||
fltinfo->actions[FLT_ACTION_COPY] ||
@@ -4481,7 +4482,7 @@ void summary_filter(SummaryView *summaryview, gboolean selected_only)
void summary_filter_junk(SummaryView *summaryview, gboolean selected_only)
{
- if (prefs_common.junk_fltlist)
+ if (prefs_common.manual_junk_fltlist)
summary_filter_real(summaryview, summary_filter_junk_func,
selected_only);
}