Skip to content

Commit

Permalink
Apply Correct filtering when cheanging header column filtering fix #1813
Browse files Browse the repository at this point in the history
  • Loading branch information
LiorBanai committed Aug 18, 2023
1 parent c6e99f5 commit e36b956
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Analogy.CommonControls/UserControls/LogMessagesUC.cs
Original file line number Diff line number Diff line change
Expand Up @@ -458,6 +458,10 @@ private void rgSearchMode_SelectedIndexChanged(object s, EventArgs e)
}
private void SetupEventsHandlers()
{
LogGrid.ColumnFilterChanged += (s, e) =>
{
FilterResults();
};
ceSearchEverywhere.CheckedChanged += async (s, e) =>
{
_filterCriteria.SearchEveryWhere = ceSearchEverywhere.Checked;
Expand Down

0 comments on commit e36b956

Please sign in to comment.