We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5f23b7 commit ab7d80fCopy full SHA for ab7d80f
RetailCoder.VBE/Navigation/CodeExplorer/CodeExplorerViewModel.cs
@@ -527,10 +527,7 @@ public Visibility TreeViewVisibility
527
{
528
get
529
530
- if (Projects == null || Projects.Count == 0)
531
- { return Visibility.Collapsed; }
532
- else
533
- { return Visibility.Visible; }
+ return Projects == null || Projects.Count == 0 ? Visibility.Collapsed : Visibility.Visible;
534
}
535
536
0 commit comments