diff --git a/src/SharpIDE.Godot/Features/Run/RunPanelTab.cs b/src/SharpIDE.Godot/Features/Run/RunPanelTab.cs index 21d12fc..19313a9 100644 --- a/src/SharpIDE.Godot/Features/Run/RunPanelTab.cs +++ b/src/SharpIDE.Godot/Features/Run/RunPanelTab.cs @@ -34,8 +34,10 @@ public partial class RunPanelTab : Control }); } - public void ClearTerminal() + public void ClearTerminal() { + // .Clear removes all text except for the bottom row, so lets make sure we have a blank line, and cursor at start + _terminal.Write("\r\n"); _terminal.Clear(); } } \ No newline at end of file