Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit 89ffd87

Browse files
committed
Show Initializing... while MEF is loading
1 parent 29508bb commit 89ffd87

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/GitHub.VisualStudio/UI/GitHubPane.cs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,12 @@ public override void OnToolWindowCreated()
146146

147147
void ShowInitializing()
148148
{
149-
View = new Label { Content = "Initializing MEF" };
149+
View = new TextBlock
150+
{
151+
Text = "Initializing...",
152+
HorizontalAlignment = HorizontalAlignment.Center,
153+
VerticalAlignment = VerticalAlignment.Center,
154+
};
150155
}
151156

152157
void ShowError(Exception e)

0 commit comments

Comments
 (0)