Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lyrise committed Mar 10, 2024
1 parent 4d56bbd commit a5b8838
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Omnius.Core.Avalonia/TreeNodeModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public interface IRootTreeNode

public class RootTreeNodeModel : TreeNodeModel, IRootTreeNode
{
private AvaloniaList<TreeNodeModel> _visibleChildren = new() { ResetBehavior = ResetBehavior.Remove };
private AvaloniaList<TreeNodeModel> _visibleChildren = new();
private bool _updateEnqueued;

public RootTreeNodeModel(IActionCaller<TreeNodeModel> isExpandedChangedActionCaller) : base(isExpandedChangedActionCaller)
Expand Down

0 comments on commit a5b8838

Please sign in to comment.