Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Source/ModioUICore/Public/Core/ModioTagOptionsUI.h
Original file line number Diff line number Diff line change
Expand Up @@ -177,5 +177,5 @@ class MODIOUICORE_API UModioModTagOptionsUI : public UObject, public IModioModTa
* @brief Transient set of bindable tag categories for use in the UI
*/
UPROPERTY(Transient, BlueprintReadWrite, EditAnywhere, Category = "mod.io|UI|ModioModTagOptionsUI")
TArray<UModioModTagInfoUI*> BindableTagCategories;
TArray<TObjectPtr<UModioModTagInfoUI>> BindableTagCategories;
};
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class MODIOUICORE_API UModioUIPrioritizeModCommand : public UObject, public IMod
static inline const FString CommandID {TEXT("PrioritizeMod")};

UPROPERTY(Transient, BlueprintReadOnly, Category = "mod.io|UI|Commands|Prioritize Mod", meta = (BlueprintProtected))
UObject* DataSource;
TObjectPtr<UObject> DataSource;

virtual void SetDataSource_Implementation(UObject* InDataSource) override
{
Expand Down