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

Commit 7f38f33

Browse files
Calling Initialize before Show
1 parent 8d9c278 commit 7f38f33

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,9 @@ public static PopupWindow Open(PopupViewType popupViewType, Action<bool> onClose
3939
popupWindow.ActiveViewType = popupViewType;
4040
popupWindow.titleContent = new GUIContent(popupWindow.ActiveView.Title, Styles.SmallLogo);
4141

42-
popupWindow.Show();
4342
popupWindow.InitializeWindow(EntryPoint.ApplicationManager);
43+
popupWindow.Show();
44+
4445
return popupWindow;
4546
}
4647

0 commit comments

Comments
 (0)