mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 19:26:39 +02:00
Fix a global hotkey issues in CMD, which will hang Wox on init.
This commit is contained in:
@@ -100,7 +100,7 @@ namespace Wox.Core.Plugin
|
||||
PluginPair pair = pluginPair;
|
||||
ThreadPool.QueueUserWorkItem(o =>
|
||||
{
|
||||
using (new Timeit("Init Plugin: " + pair.Metadata.Name))
|
||||
using (new Timeit(string.Format("Init {0}", pair.Metadata.Name)))
|
||||
{
|
||||
pair.Plugin.Init(new PluginInitContext()
|
||||
{
|
||||
@@ -109,8 +109,7 @@ namespace Wox.Core.Plugin
|
||||
API = API
|
||||
});
|
||||
}
|
||||
})
|
||||
;
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user