| 376 | } |
| 377 | |
| 378 | FText SFlowGraphEditor::GetPIENotifyText() const |
| 379 | { |
| 380 | if (const UFlowAsset* InspectedInstance = FlowAsset->GetInspectedInstance()) |
| 381 | { |
| 382 | if (const UWorld* InspectedWorld = InspectedInstance->GetWorld()) |
| 383 | { |
| 384 | return FText::FromString(GetDebugStringForWorld(InspectedWorld)); |
| 385 | } |
| 386 | } |
| 387 | |
| 388 | return LOCTEXT("PIENotifyText_FlowAsset", "Template"); |
| 389 | } |
| 390 | |
| 391 | void SFlowGraphEditor::UndoGraphAction() |
| 392 | { |
nothing calls this directly
no test coverage detected