From f0f9bd3b93d14de234ea11aa856e7f9fd0beb030 Mon Sep 17 00:00:00 2001 From: Matt Parker <61717342+MattParkerDev@users.noreply.github.com> Date: Fri, 12 Sep 2025 20:39:06 +1000 Subject: [PATCH] Update SolutionExplorerPanel.cs --- .../Features/SolutionExplorer/SolutionExplorerPanel.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/SharpIDE.Godot/Features/SolutionExplorer/SolutionExplorerPanel.cs b/src/SharpIDE.Godot/Features/SolutionExplorer/SolutionExplorerPanel.cs index e0345a8..0220a5b 100644 --- a/src/SharpIDE.Godot/Features/SolutionExplorer/SolutionExplorerPanel.cs +++ b/src/SharpIDE.Godot/Features/SolutionExplorer/SolutionExplorerPanel.cs @@ -109,6 +109,7 @@ public partial class SolutionExplorerPanel : Panel { var fileItem = _tree.CreateItem(parent); fileItem.SetText(0, file.Name); + fileItem.SetIcon(0, CsharpFileIcon); var container = new SharpIdeFileGodotContainer { File = file }; // TODO: Handle ObjectDB instances leaked at exit fileItem.SetMetadata(0, container);