| 77 | } |
| 78 | |
| 79 | void FFlowObjectDiff::OnSelectDiff(const FSingleObjectDiffEntry& Property) const |
| 80 | { |
| 81 | if (Property.DiffType == EPropertyDiffType::Type::Invalid) |
| 82 | { |
| 83 | return; |
| 84 | } |
| 85 | |
| 86 | if (OldDetailsView.IsValid()) |
| 87 | { |
| 88 | OldDetailsView->HighlightProperty(Property.Identifier); |
| 89 | } |
| 90 | |
| 91 | if (NewDetailsView.IsValid()) |
| 92 | { |
| 93 | NewDetailsView->HighlightProperty(Property.Identifier); |
| 94 | } |
| 95 | } |
no test coverage detected