| 475 | } |
| 476 | |
| 477 | void SPythonLog::OnClearLog() |
| 478 | { |
| 479 | // Make sure the cursor is back at the start of the log before we clear it |
| 480 | MessagesTextBox->GoTo(FTextLocation(0)); |
| 481 | |
| 482 | MessagesTextMarshaller->ClearMessages(); |
| 483 | MessagesTextBox->Refresh(); |
| 484 | bIsUserScrolled = false; |
| 485 | } |
| 486 | |
| 487 | void SPythonLog::OnUserScrolled(float ScrollOffset) |
| 488 | { |
nothing calls this directly
no test coverage detected