From 8861e1a2aca1e6051d8d03d14abff4552083421c Mon Sep 17 00:00:00 2001 From: Matt Parker <61717342+MattParkerDev@users.noreply.github.com> Date: Fri, 10 Oct 2025 20:45:15 +1000 Subject: [PATCH] run project from context menu --- .../SolutionExplorer/ContextMenus/ProjectContextMenu.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/SharpIDE.Godot/Features/SolutionExplorer/ContextMenus/ProjectContextMenu.cs b/src/SharpIDE.Godot/Features/SolutionExplorer/ContextMenus/ProjectContextMenu.cs index ac34234..3229ce6 100644 --- a/src/SharpIDE.Godot/Features/SolutionExplorer/ContextMenus/ProjectContextMenu.cs +++ b/src/SharpIDE.Godot/Features/SolutionExplorer/ContextMenus/ProjectContextMenu.cs @@ -35,7 +35,11 @@ public partial class SolutionExplorerPanel var actionId = (ProjectContextMenuOptions)id; if (actionId is ProjectContextMenuOptions.Run) { - + _ = Task.GodotRun(async () => + { + GodotGlobalEvents.Instance.BottomPanelTabExternallySelected.InvokeParallelFireAndForget(BottomPanelType.Run); + await Singletons.RunService.RunProject(project); + }); } if (actionId is ProjectContextMenuOptions.Build) {