We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a59da4 commit 402e2daCopy full SHA for 402e2da
Plugins/Flow.Launcher.Plugin.PluginsManager/PluginsManager.cs
@@ -14,7 +14,7 @@ namespace Flow.Launcher.Plugin.PluginsManager
14
{
15
internal class PluginsManager
16
17
- private PluginsManifest pluginsManifest;
+ private readonly PluginsManifest pluginsManifest;
18
private PluginInitContext Context { get; set; }
19
20
private readonly string icoPath = "Images\\plugin.png";
@@ -202,7 +202,7 @@ internal List<Result> RequestUninstall(string search)
202
203
Title = $"{x.Metadata.Name} by {x.Metadata.Author}",
204
SubTitle = x.Metadata.Description,
205
- IcoPath = icoPath,
+ IcoPath = x.Metadata.IcoPath,
206
Action = e =>
207
208
Application.Current.MainWindow.Hide();
0 commit comments