| 35 | } |
| 36 | |
| 37 | TSharedPtr<SFlowGraphEditor> FFlowGraphUtils::GetFlowGraphEditor(const UEdGraph* Graph) |
| 38 | { |
| 39 | TSharedPtr<SFlowGraphEditor> FlowGraphEditor; |
| 40 | |
| 41 | const TSharedPtr<FFlowAssetEditor> FlowEditor = GetFlowAssetEditor(Graph); |
| 42 | if (FlowEditor.IsValid()) |
| 43 | { |
| 44 | FlowGraphEditor = FlowEditor->GetFlowGraph(); |
| 45 | } |
| 46 | |
| 47 | return FlowGraphEditor; |
| 48 | } |
| 49 | |
| 50 | FString FFlowGraphUtils::RemovePrefixFromNodeText(const FText& Source) |
| 51 | { |
nothing calls this directly
no test coverage detected