diff --git a/Src/xWorks/RecordClerk.cs b/Src/xWorks/RecordClerk.cs
index a19fea2e38..7f6f4d6b58 100644
--- a/Src/xWorks/RecordClerk.cs
+++ b/Src/xWorks/RecordClerk.cs
@@ -1065,7 +1065,7 @@ public bool OnJumpToPopupRecord(object argument)
{
if (Id == "entries")
{
- return JumpToRecord(argument, true);
+ return JumpToRecord(argument);
}
return false;
}
@@ -1080,7 +1080,7 @@ public bool OnJumpToRecord(object argument)
///
/// the hvo of the record
///
- bool JumpToRecord(object argument, bool popup = false)
+ bool JumpToRecord(object argument)
{
CheckDisposed();
@@ -1125,10 +1125,7 @@ bool JumpToRecord(object argument, bool popup = false)
// update issue reported in (LT-2448). However, that message only works in the context of a
// BrowseViewer, not a document view (e.g. Dictionary) (see LT-7298). So, I've
// tested OnChangeFilterClearAll, and it seems to solve both problems now.
- if (!popup)
- {
- OnChangeFilterClearAll(null);
- }
+ OnChangeFilterClearAll(null);
m_activeMenuBarFilter = null;
index = IndexOfObjOrChildOrParent(hvoTarget);
}