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

Commit 2987c08

Browse files
Merge pull request #376 from github-for-unity/fixes/init-view-bugs
Fixing bugs in the InitProjectView
2 parents bac56f2 + 336deda commit 2987c08

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

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

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,16 @@ public override void InitializeView(IView parent)
2424
public override void OnDataUpdate()
2525
{
2626
base.OnDataUpdate();
27-
2827
userSettingsView.OnDataUpdate();
2928
gitPathView.OnDataUpdate();
3029
}
3130

31+
public override void OnEnable()
32+
{
33+
base.OnEnable();
34+
gitPathView.OnEnable();
35+
}
36+
3237
public override void OnGUI()
3338
{
3439
var headerRect = EditorGUILayout.BeginHorizontal(Styles.HeaderBoxStyle);

0 commit comments

Comments
 (0)