reset line on terminal clear

This commit is contained in:
Matt Parker
2026-01-19 18:18:08 +10:00
parent fd5281d58f
commit 26ce5b981e

View File

@@ -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();
}
}