Add sort indicator to search pane

This commit is contained in:
Marek Roszko 2023-08-09 20:09:14 -04:00
parent fd7781510e
commit 241375f41c
1 changed files with 2 additions and 0 deletions

View File

@ -128,6 +128,8 @@ void SEARCH_PANE_LISTVIEW::OnColClicked( wxListEvent& aEvent )
m_sortCol = aEvent.GetColumn();
}
ShowSortIndicator( m_sortCol, m_sortAscending );
Sort();
Refresh();
}