This commit is contained in:
2025-11-16 20:09:30 +01:00
parent e47d6599b5
commit da79ada91e
2 changed files with 7 additions and 3 deletions

View File

@@ -26,8 +26,8 @@ public class MainWindowViewModel : INotifyPropertyChanged
get => currentWorkspace;
set
{
currentWorkspace = value;
currentTreeNodes = null;
currentWorkspace = value;
}
}
@@ -55,8 +55,8 @@ public class MainWindowViewModel : INotifyPropertyChanged
get => selectedTreeNode;
set
{
selectedTreeNode = value;
currentGridRows = null;
selectedTreeNode = value;
}
}