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

Commit 5d5b0c5

Browse files
committed
A tree control. Fix scrolling.
Isolate the treeview into its own TreeControl file so everyone can use it. Fix scrolling while we're at it. Context menus still need to be implemented.
1 parent 484d2ef commit 5d5b0c5

File tree

5 files changed

+489
-454
lines changed

5 files changed

+489
-454
lines changed

src/GitHub.Api/Git/GitBranch.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace GitHub.Unity
44
{
5-
interface ITreeData
5+
public interface ITreeData
66
{
77
string Name { get; }
88
bool IsActive { get; }

src/UnityExtension/Assets/Editor/GitHub.Unity/GitHub.Unity.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@
103103
<Compile Include="UI\LoadingView.cs" />
104104
<Compile Include="UI\PublishView.cs" />
105105
<Compile Include="UI\InitProjectView.cs" />
106+
<Compile Include="UI\TreeControl.cs" />
106107
<Compile Include="UI\UserSettingsView.cs" />
107108
<Compile Include="UI\GitPathView.cs" />
108109
<Compile Include="UI\SettingsView.cs" />
@@ -217,4 +218,4 @@
217218
</Target>
218219
-->
219220
<Import Project="..\..\..\..\..\common\build.targets" />
220-
</Project>
221+
</Project>

0 commit comments

Comments
 (0)