public override void Update()
        {
            _selectedAnalysis?.Update();

            _analysesSidePanel.Update();             //< TODO: Remove this hack! It ensures that we create a view model for the "current" analysis
            if (SelectedSidePanel != _analysesSidePanel)
            {
                SelectedSidePanel?.Update();
            }
        }
Ejemplo n.º 2
0
 public override void Update()
 {
     _selectedAnalysis?.Update();
     SelectedSidePanel?.Update();
 }