From f9181fee74307ca42ea33dd7be7bdfc70d580461 Mon Sep 17 00:00:00 2001 From: Marek Frniak Date: Sat, 11 Apr 2026 11:04:00 +0200 Subject: [PATCH] Fixed SelectComponentDlg > missing assignment sharedSearchForListBox1.ListBoxEx = availCmpntsLstBox, because of this the application crashes --- TBF/UI/Bench/Components/SelectComponentClassDlg.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/TBF/UI/Bench/Components/SelectComponentClassDlg.cs b/TBF/UI/Bench/Components/SelectComponentClassDlg.cs index aa40e86c4..16b2e2f3d 100644 --- a/TBF/UI/Bench/Components/SelectComponentClassDlg.cs +++ b/TBF/UI/Bench/Components/SelectComponentClassDlg.cs @@ -43,7 +43,10 @@ namespace TBF.UI.Bench.Components { availCmpntsLstBox.SelectedIndex = selectedIndex; } - } + + /// SharedDlgSearchForListBox configuration + sharedSearchForListBox1.ListBoxEx = availCmpntsLstBox; + } void Localize() {