Skip to content

Commit

Permalink
showGroups bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ivaylo-matov committed Sep 17, 2024
1 parent 58ca085 commit b9faebb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions TuneUp/ProfiledNodeViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -374,6 +374,7 @@ public ProfiledNodeViewModel(AnnotationModel group)
BackgroundBrush = new SolidColorBrush((Color)ColorConverter.ConvertFromString(group.Background));
IsGroup = true;
State = ProfiledNodeState.NotExecuted;
ShowGroupIndicator = true;
}
}
}
3 changes: 2 additions & 1 deletion TuneUp/TuneUpWindowViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -835,7 +835,8 @@ private ProfiledNodeViewModel CreateGroupTotalTimeNode(ProfiledNodeViewModel pro
GroupGUID = profiledGroup.GroupGUID,
GroupName = profiledGroup.GroupName,
BackgroundBrush = profiledGroup.BackgroundBrush,
IsGroupExecutionTime = true
IsGroupExecutionTime = true,
ShowGroupIndicator = true
};

var totalExecTimeGUID = Guid.NewGuid();
Expand Down

0 comments on commit b9faebb

Please sign in to comment.