You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Never hide the filter bar if there is a filter active
#jira UE-70811 #rb trivial #ROBOMERGE-OWNER: ben.marsh #ROBOMERGE-AUTHOR: lauren.ridge #ROBOMERGE-SOURCE: CL 5271035 in //UE4/Release-4.22/... via CL 5271044 #ROBOMERGE-BOT: BUILD (Main -> Dev-Build) [CL 5273090 by lauren ridge in Dev-Build branch]
This commit is contained in:
@@ -649,7 +649,7 @@ EVisibility SDetailsViewBase::GetFilterBoxVisibility() const
|
||||
// Visible if we allow search and we have anything to search otherwise collapsed so it doesn't take up room
|
||||
if (DetailsViewArgs.bAllowSearch && IsConnected())
|
||||
{
|
||||
if (RootTreeNodes.Num() > 0 || HasActiveSearch() || CurrentFilter.bShowOnlyModifiedProperties || CurrentFilter.bShowOnlyDiffering)
|
||||
if (RootTreeNodes.Num() > 0 || HasActiveSearch() || !CurrentFilter.IsEmptyFilter())
|
||||
{
|
||||
Result = EVisibility::Visible;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user