diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2020-02-18 14:31:24 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2020-02-18 14:31:24 +0200 |
| commit | b7f4088f257c3c9c816f680c97a652f6f73de940 (patch) | |
| tree | 6eb4b2f444a353bfc077509eb33bc4697f2e1ac7 /Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels | |
| parent | b6586404105311d0b0536d0537a7084b1a37c7c0 (diff) | |
| download | Tango-b7f4088f257c3c9c816f680c97a652f6f73de940.tar.gz Tango-b7f4088f257c3c9c816f680c97a652f6f73de940.zip | |
Several bug fixes on PPC.
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels')
| -rw-r--r-- | Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/LoadingViewVM.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/LoadingViewVM.cs b/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/LoadingViewVM.cs index f926a0f4c..e280d5f9d 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/LoadingViewVM.cs +++ b/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/LoadingViewVM.cs @@ -96,12 +96,14 @@ namespace Tango.PPC.UI.ViewModels LogManager.Log($"Application started. Single user/Auto login detected ({user.Email}). Skipping LoginView..."); await AuthenticationProvider.Login(user.Email, user.Password, false); + await Task.Delay(1000); IsLoading = false; } else { LogManager.Log("Application started. Navigating to LoginView..."); await NavigationManager.NavigateTo(NavigationView.LoginView); + await Task.Delay(1000); IsLoading = false; } } |
