| 174 | TextBox->SetPythonBox(this); |
| 175 | } |
| 176 | void SPythonConsoleInputBox::Tick(const FGeometry& AllottedGeometry, const double InCurrentTime, const float InDeltaTime) |
| 177 | { |
| 178 | if (!GIntraFrameDebuggingGameThread && !IsEnabled()) |
| 179 | { |
| 180 | SetEnabled(true); |
| 181 | } |
| 182 | else if (GIntraFrameDebuggingGameThread && IsEnabled()) |
| 183 | { |
| 184 | SetEnabled(false); |
| 185 | } |
| 186 | } |
| 187 | |
| 188 | |
| 189 | void SPythonConsoleInputBox::OnTextCommitted(const FText& InText, ETextCommit::Type CommitInfo) |
nothing calls this directly
no outgoing calls
no test coverage detected