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.
This commit is contained in:
Paul 2015-03-21 11:19:40 +00:00
parent de6f18826f
commit f7914c6026

View file

@ -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,