| 947 | } |
| 948 | |
| 949 | void SFlowGraphNode::AddSubNode(const TSharedPtr<SGraphNode> SubNodeWidget) |
| 950 | { |
| 951 | SubNodes.Add(SubNodeWidget); |
| 952 | |
| 953 | SubNodeBox->AddSlot().AutoHeight() |
| 954 | [ |
| 955 | SubNodeWidget.ToSharedRef() |
| 956 | ]; |
| 957 | } |
| 958 | |
| 959 | FText SFlowGraphNode::GetTitle() const |
| 960 | { |
nothing calls this directly
no outgoing calls
no test coverage detected