aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/FSE/Tango.FSE.UI/ViewModels/LoadingViewVM.cs
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2020-02-23 16:34:40 +0200
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2020-02-23 16:34:40 +0200
commitb76b75b9a455648114997ef611ead96bc68791a2 (patch)
tree1ad3c6ed2a856284ca0ecd3b051d5287727b0cc4 /Software/Visual_Studio/FSE/Tango.FSE.UI/ViewModels/LoadingViewVM.cs
parent84c6b6dc548751769db3d489effe2f5f5df2d08d (diff)
downloadTango-b76b75b9a455648114997ef611ead96bc68791a2.tar.gz
Tango-b76b75b9a455648114997ef611ead96bc68791a2.zip
Improved loading screen FSE.
Diffstat (limited to 'Software/Visual_Studio/FSE/Tango.FSE.UI/ViewModels/LoadingViewVM.cs')
-rw-r--r--Software/Visual_Studio/FSE/Tango.FSE.UI/ViewModels/LoadingViewVM.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Software/Visual_Studio/FSE/Tango.FSE.UI/ViewModels/LoadingViewVM.cs b/Software/Visual_Studio/FSE/Tango.FSE.UI/ViewModels/LoadingViewVM.cs
index 3438b3670..6f2693e5a 100644
--- a/Software/Visual_Studio/FSE/Tango.FSE.UI/ViewModels/LoadingViewVM.cs
+++ b/Software/Visual_Studio/FSE/Tango.FSE.UI/ViewModels/LoadingViewVM.cs
@@ -31,7 +31,7 @@ namespace Tango.FSE.UI.ViewModels
try
{
IsLoading = true;
- await Task.Delay(1000);
+ await Task.Delay(2000);
await GatewayService.GetEnvironments();
await NavigationManager.NavigateTo(NavigationView.LoginView);
}