From dc8df9c62f429dcdd714de7ae9807d2cff15732b Mon Sep 17 00:00:00 2001 From: bao-qian Date: Wed, 4 Nov 2015 01:10:54 +0000 Subject: [PATCH] Enable PreLoadImages Fix bug introduced in https://github.com/Wox-launcher/Wox/commit/cf87f68b42e00f087267cdeaf2fcb0d707e684c4 --- Wox/App.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Wox/App.xaml.cs b/Wox/App.xaml.cs index 8808ef1876..3e5f2b3f18 100644 --- a/Wox/App.xaml.cs +++ b/Wox/App.xaml.cs @@ -35,7 +35,7 @@ namespace Wox DispatcherUnhandledException += ErrorReporting.DispatcherUnhandledException; AppDomain.CurrentDomain.UnhandledException += ErrorReporting.UnhandledExceptionHandle; - //ThreadPool.QueueUserWorkItem(o => { ImageLoader.ImageLoader.PreloadImages(); }); + ThreadPool.QueueUserWorkItem(o => { ImageLoader.ImageLoader.PreloadImages(); }); Window = new MainWindow(); PluginManager.Init(Window); CommandArgsFactory.Execute(e.Args.ToList());