From 12bb372137a34daa106551b12de1ee32f57c1681 Mon Sep 17 00:00:00 2001 From: Daniel Kraus Date: Mon, 6 Mar 2017 06:17:24 +0100 Subject: [PATCH] Use 500 ms delay to display FirstRunView. --- zaaReloaded2/ThisAddIn.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zaaReloaded2/ThisAddIn.cs b/zaaReloaded2/ThisAddIn.cs index 7e188b6..50c4b34 100755 --- a/zaaReloaded2/ThisAddIn.cs +++ b/zaaReloaded2/ThisAddIn.cs @@ -95,7 +95,7 @@ namespace zaaReloaded2 { _dispatcher.Invoke((Action)(() => ViewModels.FirstRunViewModel.InjectIntoIfNeeded()), null); - }, null, 1000, System.Threading.Timeout.Infinite); + }, null, 500, System.Threading.Timeout.Infinite); Logger.Info("ThisAddIn_Startup: Finished startup"); }