Skip to content

Commit

Permalink
Update TuneUpWindowViewModel.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
ivaylo-matov committed Oct 28, 2024
1 parent 626f37a commit 3724e0c
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions TuneUp/TuneUpWindowViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1027,6 +1027,16 @@ private void OnCurrentWorkspaceCleared(IWorkspaceModel workspace)

#region Helpers

/// <summary>
/// Raises property change notifications for the visibility of the Latest Run, Previous Run, and Not Executed tables.
/// </summary>
private void UpdateTableVisibility()
{
RaisePropertyChanged(nameof(LatestRunTableVisibility));
RaisePropertyChanged(nameof(PreviousRunTableVisibility));
RaisePropertyChanged(nameof(NotExecutedTableVisibility));
}

/// <summary>
/// Returns the corresponding CollectionViewSource for the given ObservableCollection of ProfiledNodeViewModel.
/// </summary>
Expand Down

0 comments on commit 3724e0c

Please sign in to comment.