| 195 | } |
| 196 | |
| 197 | FText 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 | |
| 214 | FText FFindInFlowResult::GetMatchedSnippet() const |
| 215 | { |
no test coverage detected