Skip to content

Commit

Permalink
Improved: Startup Time via Async Label Switch
Browse files Browse the repository at this point in the history
  • Loading branch information
Sewer56 committed Feb 5, 2022
1 parent 8240816 commit e287d22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/Reloaded.Mod.Launcher/Pages/SplashPage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,6 @@ private void DisplayFirstLaunchWarningIfNeeded()
/// </summary>
private void UpdateText(string newText)
{
ActionWrappers.ExecuteWithApplicationDispatcher(() => { _splashViewModel.Text = newText; });
ActionWrappers.ExecuteWithApplicationDispatcherAsync(() => { _splashViewModel.Text = newText; });
}
}

0 comments on commit e287d22

Please sign in to comment.