From 85ca71d3aba18df41ca28a50393779fd7e933437 Mon Sep 17 00:00:00 2001 From: Mixone-FinallyHere Date: Mon, 28 Jul 2025 10:19:27 +0200 Subject: [PATCH] Fix issue in text editor search box (double click) --- DS_Map/Editors/TextEditor.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/DS_Map/Editors/TextEditor.cs b/DS_Map/Editors/TextEditor.cs index 680d392..2ff7f6e 100644 --- a/DS_Map/Editors/TextEditor.cs +++ b/DS_Map/Editors/TextEditor.cs @@ -21,6 +21,7 @@ namespace DSPRE.Editors public TextEditor() { InitializeComponent(); + this.textSearchResultsListBox.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.textSearchResultsListBox_GoToEntryResult); }