MCPcopy Create free account
hub / github.com/MothCocoon/FlowGraph / GetToolTipText

Method GetToolTipText

Source/FlowEditor/Private/Find/FindInFlow.cpp:197–212  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

195}
196
197FText FFindInFlowResult::GetToolTipText() const
198{
199 FString Tip = GetNodeTypeText() + TEXT("\n") + GetDescriptionText();
200
201 if (!GetCommentText().IsEmpty())
202 {
203 Tip += TEXT("\n") + GetCommentText();
204 }
205
206 if (!MatchedPropertySnippet.IsEmpty())
207 {
208 Tip += TEXT("\n\nMatched: ") + MatchedPropertySnippet;
209 }
210
211 return FText::FromString(Tip);
212}
213
214FText FFindInFlowResult::GetMatchedSnippet() const
215{

Callers 3

OnGenerateRowMethod · 0.80

Calls 1

IsEmptyMethod · 0.80

Tested by

no test coverage detected