run panel appears after build

This commit is contained in:
Matt Parker
2026-01-18 17:16:51 +10:00
parent 56784ecfd3
commit 7ca1de42c0
4 changed files with 6 additions and 5 deletions

View File

@@ -62,7 +62,6 @@ public partial class SolutionExplorerPanel
{
_ = Task.GodotRun(async () =>
{
GodotGlobalEvents.Instance.BottomPanelTabExternallySelected.InvokeParallelFireAndForget(BottomPanelType.Run);
await _runService.RunProject(project);
});
}
@@ -98,7 +97,6 @@ public partial class SolutionExplorerPanel
}
private async Task MsBuildProject(SharpIdeProjectModel project, BuildType buildType)
{
GodotGlobalEvents.Instance.BottomPanelTabExternallySelected.InvokeParallelFireAndForget(BottomPanelType.Build);
await _buildService.MsBuildAsync(project.FilePath, buildType);
}
}