From df7ced0131b185613ddbef76d6bfa8e03db5649b Mon Sep 17 00:00:00 2001 From: Matt Parker <61717342+MattParkerDev@users.noreply.github.com> Date: Mon, 22 Sep 2025 22:16:33 +1000 Subject: [PATCH] start sln explorer collapsed --- .../Features/SolutionExplorer/SolutionExplorerPanel.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/SharpIDE.Godot/Features/SolutionExplorer/SolutionExplorerPanel.cs b/src/SharpIDE.Godot/Features/SolutionExplorer/SolutionExplorerPanel.cs index d15ed57..f92a5f9 100644 --- a/src/SharpIDE.Godot/Features/SolutionExplorer/SolutionExplorerPanel.cs +++ b/src/SharpIDE.Godot/Features/SolutionExplorer/SolutionExplorerPanel.cs @@ -91,6 +91,8 @@ public partial class SolutionExplorerPanel : MarginContainer { AddSlnFolderToTree(rootItem, folder); } + rootItem.SetCollapsedRecursive(true); + rootItem.Collapsed = false; } private void AddSlnFolderToTree(TreeItem parent, SharpIdeSolutionFolder folder)