From 14db5bc3a17c4492533d81f24fa684aae0de72d6 Mon Sep 17 00:00:00 2001 From: Matt Parker <61717342+MattParkerDev@users.noreply.github.com> Date: Thu, 25 Sep 2025 00:30:50 +1000 Subject: [PATCH] open file from search result --- .../Features/Search/SearchResultComponent.cs | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/SharpIDE.Godot/Features/Search/SearchResultComponent.cs b/src/SharpIDE.Godot/Features/Search/SearchResultComponent.cs index d2def30..59ee0f9 100644 --- a/src/SharpIDE.Godot/Features/Search/SearchResultComponent.cs +++ b/src/SharpIDE.Godot/Features/Search/SearchResultComponent.cs @@ -8,17 +8,25 @@ public partial class SearchResultComponent : MarginContainer private Label _matchingLineLabel = null!; private Label _fileNameLabel = null!; private Label _lineNumberLabel = null!; + private Button _button = null!; public SearchResult Result { get; set; } = null!; public override void _Ready() { + _button = GetNode