| 106 | } |
| 107 | |
| 108 | TSharedRef<SWidget> FFindInFlowResult::CreateIcon() const |
| 109 | { |
| 110 | const FSlateColor IconColor = FSlateColor::UseForeground(); |
| 111 | const FSlateBrush* Brush = FAppStyle::GetBrush(TEXT("GraphEditor.FIB_Event")); |
| 112 | |
| 113 | return SNew(SImage) |
| 114 | .Image(Brush) |
| 115 | .ColorAndOpacity(IconColor); |
| 116 | } |
| 117 | |
| 118 | FReply FFindInFlowResult::OnClick(TWeakPtr<class FFlowAssetEditor> FlowAssetEditorPtr) |
| 119 | { |
no test coverage detected