From: Paul Date: Sat, 21 Mar 2015 11:19:40 +0000 (+0000) Subject: fix bug 3407, 'Pressing the "Date" column header to "sort by date" causes all columns... X-Git-Tag: 3.12.0~164 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=f7914c60266197106a7c600eedee2ad3143cf7c5;ds=inline 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. --- diff --git a/src/summaryview.c b/src/summaryview.c index dacbc66be..b3b14476c 100644 --- 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,