From 7c2f6d9d5d3dec21aa95f55cc110984c75b8671b Mon Sep 17 00:00:00 2001 From: Matt Parker <61717342+MattParkerDev@users.noreply.github.com> Date: Mon, 19 Jan 2026 19:30:59 +1000 Subject: [PATCH] remove an invokeasync --- src/SharpIDE.Godot/Features/Build/BuildPanel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SharpIDE.Godot/Features/Build/BuildPanel.cs b/src/SharpIDE.Godot/Features/Build/BuildPanel.cs index 11ea2e3..26d990f 100644 --- a/src/SharpIDE.Godot/Features/Build/BuildPanel.cs +++ b/src/SharpIDE.Godot/Features/Build/BuildPanel.cs @@ -30,7 +30,7 @@ public partial class BuildPanel : Control private async Task OnBuildStarted(BuildStartedFlags _) { - await this.InvokeAsync(() => _terminal.ClearTerminal()); + _terminal.ClearTerminal(); _buildOutputChannelReader ??= _buildService.BuildTextWriter.ConsoleChannel.Reader; } } \ No newline at end of file