diff --git a/Source/StevesUEHelpersEd/Private/StevesFixedDataTableCustomisationLayout.cpp b/Source/StevesUEHelpersEd/Private/StevesFixedDataTableCustomisationLayout.cpp index 73cfad0..1fa1213 100644 --- a/Source/StevesUEHelpersEd/Private/StevesFixedDataTableCustomisationLayout.cpp +++ b/Source/StevesUEHelpersEd/Private/StevesFixedDataTableCustomisationLayout.cpp @@ -38,7 +38,12 @@ void FStevesFixedDataTableCustomisationLayout::CustomizeHeader(TSharedRefGetMetaData(TEXT("DataTable")); if (UDataTable* DataTable = LoadObject(nullptr, *DataTablePath, nullptr)) { - DataTablePropertyHandle->SetValue(DataTable); + UObject* Existing = nullptr; + const bool TablePicked = DataTablePropertyHandle->GetValue(Existing) == FPropertyAccess::Success; + if (!TablePicked || Existing != DataTable) + { + DataTablePropertyHandle->SetValue(DataTable); + } } else {