commit f7914c60266197106a7c600eedee2ad3143cf7c5
parent de6f18826fe06f2592e2436b70a340cb20241df0
Author: Paul <paul@claws-mail.org>
Date: Sat, 21 Mar 2015 11:19:40 +0000
fix bug 3407, 'Pressing the "Date" column header to "sort by date" causes all columns to have a sort arrow.'
It was only apparent when sorting by thread date, not sorting by date.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/summaryview.c b/src/summaryview.c
@@ -2809,7 +2809,7 @@ static void summary_set_column_titles(SummaryView *summaryview)
if (summaryview->sort_key == sort_by[type] ||
(summaryview->sort_key == SORT_BY_THREAD_DATE &&
- sort_by[SORT_BY_DATE])) {
+ sort_by[SORT_BY_DATE] && type == S_COL_DATE)) {
arrow = gtk_arrow_new
(summaryview->sort_type == SORT_ASCENDING
? GTK_ARROW_DOWN : GTK_ARROW_UP,