Skip to content

Commit 402e2da

Browse files
committed
use plugin icopath when displaying uninstall plugins
1 parent 1a59da4 commit 402e2da

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Plugins/Flow.Launcher.Plugin.PluginsManager/PluginsManager.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace Flow.Launcher.Plugin.PluginsManager
1414
{
1515
internal class PluginsManager
1616
{
17-
private PluginsManifest pluginsManifest;
17+
private readonly PluginsManifest pluginsManifest;
1818
private PluginInitContext Context { get; set; }
1919

2020
private readonly string icoPath = "Images\\plugin.png";
@@ -202,7 +202,7 @@ internal List<Result> RequestUninstall(string search)
202202
{
203203
Title = $"{x.Metadata.Name} by {x.Metadata.Author}",
204204
SubTitle = x.Metadata.Description,
205-
IcoPath = icoPath,
205+
IcoPath = x.Metadata.IcoPath,
206206
Action = e =>
207207
{
208208
Application.Current.MainWindow.Hide();

0 commit comments

Comments
 (0)