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 6d82ad9 commit d023ceaCopy full SHA for d023cea
RetailCoder.VBE/Navigation/CodeExplorer/CodeExplorerViewModel.cs
@@ -228,9 +228,9 @@ public ObservableCollection<CodeExplorerItemViewModel> Projects
228
get { return _projects; }
229
set
230
{
231
+ ReorderChildNodes(value);
232
_projects = new ObservableCollection<CodeExplorerItemViewModel>(value.OrderBy(o => o.NameWithSignature));
-
233
- ReorderChildNodes(_projects);
+
234
OnPropertyChanged();
235
}
236
0 commit comments