File tree 2 files changed +2
-2
lines changed
Source/MDFastBinding/Private
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"FileVersion": 3,
3
3
"Version": 1,
4
- "VersionName": "1.0",
4
+ "VersionName": "1.0.1 ",
5
5
"FriendlyName": "MDFastBinding",
6
6
"Description": "A versatile and performant alternative to UMG property bindings for designer-friendly workflows.",
7
7
"Category": "Other",
Original file line number Diff line number Diff line change @@ -419,7 +419,7 @@ FMDFastBindingItem& UMDFastBindingObject::EnsureBindingItemExists(const FName& I
419
419
BindingItems.Add (MoveTemp (Item));
420
420
BindingItem = BindingItems.FindByKey (ItemName);
421
421
}
422
- else if (BindingItem->HasDefaultValue () && BindingItem->ItemProperty .Get () != ItemProperty)
422
+ else if (BindingItem->HasDefaultValue () && BindingItem->ItemProperty .IsValid () && BindingItem-> ItemProperty . Get () != ItemProperty)
423
423
{
424
424
// Clear defaults when the item property changed
425
425
BindingItem->ClearDefaultValues ();
You can’t perform that action at this time.
0 commit comments