From 4c32e4cf7b55aae57b688302912eedc1a2098a9a Mon Sep 17 00:00:00 2001 From: KirillGutyrchik Date: Tue, 17 Dec 2024 16:47:26 +0300 Subject: [PATCH] Fix open signals --- src/InterprojectExchange/Forms/InterprojectExchangeForm.cs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/InterprojectExchange/Forms/InterprojectExchangeForm.cs b/src/InterprojectExchange/Forms/InterprojectExchangeForm.cs index 6da6aae1..aacdadef 100644 --- a/src/InterprojectExchange/Forms/InterprojectExchangeForm.cs +++ b/src/InterprojectExchange/Forms/InterprojectExchangeForm.cs @@ -1028,11 +1028,8 @@ private void LoadAdvProjData(string projName) /// private void ReloadListViewWithSignals() { - if(advProjNameComboBox.SelectedItem is null || - string.IsNullOrEmpty(advProjNameComboBox.SelectedText)) - { + if(string.IsNullOrEmpty(advProjNameComboBox.SelectedItem?.ToString())) return; - } bindedSignalsList.Items.Clear();