| 447 | } |
| 448 | |
| 449 | void SPythonLog::Serialize(const TCHAR* V, ELogVerbosity::Type Verbosity, const class FName& Category) |
| 450 | { |
| 451 | //UE_LOG(LogTemp, Warning, TEXT("%s"), Category.ToString()) |
| 452 | if (MessagesTextMarshaller->AppendMessage(V, Verbosity, Category)) |
| 453 | { |
| 454 | // Don't scroll to the bottom automatically when the user is scrolling the view or has scrolled it away from the bottom. |
| 455 | if (!bIsUserScrolled) |
| 456 | { |
| 457 | MessagesTextBox->ScrollTo(FTextLocation(MessagesTextMarshaller->GetNumMessages() - 1)); |
| 458 | } |
| 459 | } |
| 460 | } |
| 461 | |
| 462 | void SPythonLog::ExtendTextBoxMenu(FMenuBuilder& Builder) |
| 463 | { |
nothing calls this directly
no test coverage detected