mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Remove await Task.Run for IconDelegate (#1704)
Let's trust plugin developer when they use that for icon
This commit is contained in:
parent
c0f46f24de
commit
5e0adbaf36
1 changed files with 1 additions and 1 deletions
|
|
@ -188,7 +188,7 @@ namespace Flow.Launcher.ViewModel
|
|||
{
|
||||
try
|
||||
{
|
||||
var image = await Task.Run(() => icon()).ConfigureAwait(false);
|
||||
var image = icon();
|
||||
return image;
|
||||
}
|
||||
catch (Exception e)
|
||||
|
|
|
|||
Loading…
Reference in a new issue