display tabs on events

This commit is contained in:
Matt Parker
2025-08-27 21:44:26 +10:00
parent e162e6ba5e
commit 563f2bba2e
2 changed files with 2 additions and 0 deletions

View File

@@ -47,6 +47,7 @@ public partial class RunMenuItem : HBoxContainer
private async void OnRunButtonPressed()
{
GodotGlobalEvents.InvokeBottomPanelTabSelected(BottomPanelType.Run);
await Singletons.RunService.RunProject(Project).ConfigureAwait(false);
}
}

View File

@@ -56,6 +56,7 @@ public partial class IdeRoot : Control
private async void OnBuildSlnButtonPressed()
{
GodotGlobalEvents.InvokeBottomPanelTabSelected(BottomPanelType.Build);
await Singletons.BuildService.MsBuildSolutionAsync(_solutionExplorerPanel.SolutionModel.FilePath);
}