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

Commit 9ca2d26

Browse files
Fixes needed after merge
1 parent 91b9afe commit 9ca2d26

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,15 +187,16 @@ private void BuildTree()
187187
if (treeChanges == null)
188188
{
189189
treeChanges = new ChangesTree();
190+
treeChanges.Title = "Changes";
190191
treeChanges.DisplayRootNode = false;
191-
treeChanges.Checkable = true;
192+
treeChanges.IsCheckable = true;
192193
treeChanges.PathIgnoreRoot = Environment.RepositoryPath + Environment.FileSystem.DirectorySeparatorChar;
193194
treeChanges.PathSeparator = Environment.FileSystem.DirectorySeparatorChar.ToString();
194195

195196
UpdateTreeIcons();
196197
}
197198

198-
treeChanges.Load(gitStatusEntries.Select(entry => new GitStatusEntryTreeData(entry)).Cast<ITreeData>(), "Changes");
199+
TreeLoader.Load(treeChanges, gitStatusEntries.Select(entry => new GitStatusEntryTreeData(entry)).Cast<ITreeData>());
199200
Redraw();
200201
}
201202

0 commit comments

Comments
 (0)