Skip to content

Commit

Permalink
Update ProjectControl.eto.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
dellis1972 authored Oct 13, 2024
1 parent 56440ee commit d118be4
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ private void TreeView_SelectedItemChanged(object sender, EventArgs e)
{
var items = new List<IProjectItem>();

foreach (TreeGridItem selected in _treeView.SelectedItems) {
foreach (TreeGridItem selected in _treeView.SelectedItems)
{
if (selected is null)
continue;
if (selected.Tag is IProjectItem)
Expand Down

0 comments on commit d118be4

Please sign in to comment.