From 64eab3ceb4f020b8325bffc819d0127b1a17268e Mon Sep 17 00:00:00 2001 From: Matt Parker <61717342+MattParkerDev@users.noreply.github.com> Date: Sat, 29 Nov 2025 13:58:02 +1000 Subject: [PATCH] Show file icon in search all files dialog --- .../SearchAllFiles/SearchAllFilesResultComponent.cs | 7 ++++++- .../SearchAllFiles/SearchAllFilesResultComponent.tscn | 10 +++++++++- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/src/SharpIDE.Godot/Features/Search/SearchAllFiles/SearchAllFilesResultComponent.cs b/src/SharpIDE.Godot/Features/Search/SearchAllFiles/SearchAllFilesResultComponent.cs index d7306f8..c7e89e9 100644 --- a/src/SharpIDE.Godot/Features/Search/SearchAllFiles/SearchAllFilesResultComponent.cs +++ b/src/SharpIDE.Godot/Features/Search/SearchAllFiles/SearchAllFilesResultComponent.cs @@ -1,12 +1,14 @@ using Godot; using SharpIDE.Application.Features.Analysis; using SharpIDE.Application.Features.Search; +using SharpIDE.Godot.Features.SolutionExplorer; namespace SharpIDE.Godot.Features.Search.SearchAllFiles; public partial class SearchAllFilesResultComponent : MarginContainer { private TextureRect _textureRect = null!; + private TextureRect _overlayTextureRect = null!; private Label _fileNameLabel = null!; private Label _filePathLabel = null!; private Button _button = null!; @@ -21,6 +23,7 @@ public partial class SearchAllFilesResultComponent : MarginContainer { _button = GetNode