Files
UnrealEngine/Engine/Source/Editor/PropertyEditor/Private/DetailWidgetRow.cpp
2025-05-18 13:04:45 +08:00

18 lines
427 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "DetailWidgetRow.h"
#include "PropertyEditorHelpers.h"
const float FDetailWidgetRow::DefaultValueMinWidth = 125.0f;
const float FDetailWidgetRow::DefaultValueMaxWidth = 125.0f;
const FName FDetailWidgetRow::FCustomMenuData::GetEntryName() const
{
if (!EntryName.IsNone())
{
return EntryName;
}
return FName(Name.ToString().Replace(TEXT(" "), TEXT("")));
}