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

Commit 72fb426

Browse files
committed
Fix initializing the auth view'
1 parent 3ad9510 commit 72fb426

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ public static IView Open(Action<bool> onClose = null)
2929

3030
public override void OnGUI()
3131
{
32+
if (authView == null)
33+
{
34+
CreateViews();
35+
}
3236
authView.OnGUI();
3337
}
3438

0 commit comments

Comments
 (0)