Skip to content

Commit

Permalink
Fix open signals
Browse files Browse the repository at this point in the history
  • Loading branch information
KirillGutyrchik committed Dec 17, 2024
1 parent 9dd9ed6 commit 4c32e4c
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/InterprojectExchange/Forms/InterprojectExchangeForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1028,11 +1028,8 @@ private void LoadAdvProjData(string projName)
/// </summary>
private void ReloadListViewWithSignals()
{
if(advProjNameComboBox.SelectedItem is null ||
string.IsNullOrEmpty(advProjNameComboBox.SelectedText))
{
if(string.IsNullOrEmpty(advProjNameComboBox.SelectedItem?.ToString()))
return;
}

bindedSignalsList.Items.Clear();

Expand Down

0 comments on commit 4c32e4c

Please sign in to comment.