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 c492c7c commit 1c815d3Copy full SHA for 1c815d3
RetailCoder.VBE/Navigation/CodeExplorer/CodeExplorerViewModel.cs
@@ -180,6 +180,7 @@ public bool IsBusy
180
{
181
_isBusy = value;
182
OnPropertyChanged();
183
+ // If the window is "busy" then hide the Refresh message
184
OnPropertyChanged("EmptyTreeMessageVisibility");
185
}
186
@@ -248,6 +249,7 @@ public ObservableCollection<CodeExplorerItemViewModel> Projects
248
249
_projects = new ObservableCollection<CodeExplorerItemViewModel>(value.OrderBy(o => o.NameWithSignature));
250
251
252
+ // Once a Project has been set, show the TreeView
253
OnPropertyChanged("TreeViewVisibility");
254
255
0 commit comments