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:
parent
de6f18826f
commit
f7914c6026
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue