From b16e1bc126cc555c4f21c548a8ced2a3a41b348d Mon Sep 17 00:00:00 2001 From: Matt Parker <61717342+MattParkerDev@users.noreply.github.com> Date: Sat, 29 Nov 2025 12:21:54 +1000 Subject: [PATCH] .resx icon --- .../SolutionExplorer/SolutionExplorerPanel.FileIcons.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/SharpIDE.Godot/Features/SolutionExplorer/SolutionExplorerPanel.FileIcons.cs b/src/SharpIDE.Godot/Features/SolutionExplorer/SolutionExplorerPanel.FileIcons.cs index 2a86530..5bfedf1 100644 --- a/src/SharpIDE.Godot/Features/SolutionExplorer/SolutionExplorerPanel.FileIcons.cs +++ b/src/SharpIDE.Godot/Features/SolutionExplorer/SolutionExplorerPanel.FileIcons.cs @@ -32,7 +32,7 @@ public partial class SolutionExplorerPanel ".html" or ".htm" => _htmlIcon, ".css" => _cssIcon, ".txt" => _txtIcon, - ".props" or ".config" or ".targets" => _genericFileIcon, + ".props" or ".config" or ".targets" or ".resx" => _genericFileIcon, ".md" => _mdFileIcon, ".editorconfig" => _editorConfigFileIcon, ".gitignore" => _gitignoreFileIcon, @@ -42,7 +42,7 @@ public partial class SolutionExplorerPanel var overlayTexture = fileExtension switch { ".props" => _propsFileOverlayIcon, - ".config" => _configFileOverlayIcon, + ".config" or ".resx" => _configFileOverlayIcon, ".targets" => _targetsFileOverlayIcon, _ => null };