Skip to content

Commit ac19f6a

Browse files
author
Roberto De Ioris
committed
implemented 20tab#294
1 parent 912e12e commit ac19f6a

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

Source/PythonConsole/Private/SPythonLog.cpp

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,14 @@ void SPythonConsoleInputBox::OnTextCommitted(const FText& InText, ETextCommit::T
208208
this->History.Add(ExecString);
209209
this->HistoryPosition = this->History.Num();
210210

211-
UE_LOG(LogTemp, Log, TEXT(">>> %s"), *ExecString);
211+
if (IsMultiline)
212+
{
213+
UE_LOG(LogTemp, Log, TEXT("... %s"), *ExecString);
214+
}
215+
else
216+
{
217+
UE_LOG(LogTemp, Log, TEXT(">>> %s"), *ExecString);
218+
}
212219

213220
// Clear the console input area
214221
bIgnoreUIUpdate = true;

0 commit comments

Comments
 (0)