Skip to content

Commit

Permalink
Fix LT-21962 (#254)
Browse files Browse the repository at this point in the history
  • Loading branch information
jtmaxwell3 authored Jan 24, 2025
1 parent 4fb0ef9 commit 0ea8e06
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Src/xWorks/RecordClerk.cs
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,8 @@ protected virtual bool TryRestoreFilter(XmlNode clerkConfiguration, LcmCache cac
}
if (m_list.Filter == filter)
return false;
m_list.Filter = filter;
// Use OnChangeFilter so that column headers get updated (LT-21962).
OnChangeFilter(new FilterChangeEventArgs(filter, m_list.Filter));
m_list.TransferOwnership(filter as IDisposable);
return true;
}
Expand Down

0 comments on commit 0ea8e06

Please # to comment.