aboutsummaryrefslogtreecommitdiff
path: root/src/mainwindow.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-05-11 07:59:52 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-05-11 07:59:52 +0000
commit02ecfb2ce6166c0ce44753363d558063bcba8176 (patch)
tree444dce7f35d974cbdea50c23e978c96367f83552 /src/mainwindow.c
parentd0b069da3ae33f183352e89c5019d3bf509dd68b (diff)
fixed several bugs, and implemented summary_unthread().
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@243 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/mainwindow.c')
-rw-r--r--src/mainwindow.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainwindow.c b/src/mainwindow.c
index 617875e6..be7e4ac5 100644
--- a/src/mainwindow.c
+++ b/src/mainwindow.c
@@ -2933,11 +2933,11 @@ static void thread_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
if (!mainwin->summaryview->folder_item) return;
if (GTK_CHECK_MENU_ITEM(widget)->active) {
- summary_thread_build(mainwin->summaryview);
mainwin->summaryview->folder_item->threaded = TRUE;
+ summary_thread_build(mainwin->summaryview);
} else {
- summary_unthread(mainwin->summaryview);
mainwin->summaryview->folder_item->threaded = FALSE;
+ summary_unthread(mainwin->summaryview);
}
}