Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit e8d0b1b

Browse files
Merge branch 'enhancements/tree-improvements' into enhancements/changes-tree-view
2 parents 9ca2d26 + 598c96e commit e8d0b1b

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

src/UnityExtension/Assets/Editor/GitHub.Unity/UI/TreeControl.cs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ public abstract class Tree: ITree
2222
[SerializeField] public Rect Padding = new Rect();
2323

2424
[SerializeField] public string title;
25-
[SerializeField] public string pathIgnoreRoot;
2625
[SerializeField] public string pathSeparator = "/";
2726
[SerializeField] public bool displayRootNode = true;
2827
[SerializeField] public bool isCheckable = false;
@@ -78,12 +77,6 @@ public string PathSeparator
7877
set { pathSeparator = value; }
7978
}
8079

81-
public string PathIgnoreRoot
82-
{
83-
get { return pathIgnoreRoot; }
84-
set { pathIgnoreRoot = value; }
85-
}
86-
8780
public void AddNode(string fullPath, string path, string label, int level, bool isFolder, bool isActive, bool isHidden, bool isCollapsed)
8881
{
8982
var node = new TreeNode

0 commit comments

Comments
 (0)