Skip to content

Commit 8d96899

Browse files
committed
update icoPath
1 parent 1587010 commit 8d96899

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

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

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ namespace Flow.Launcher.Plugin.PluginsManager
1212
internal class PluginsManager
1313
{
1414
private PluginsManifest pluginsManifest;
15+
16+
private string icoPath = "Images\\plugin.png";
17+
1518
internal PluginsManager()
1619
{
1720
pluginsManifest = new PluginsManifest();
@@ -63,7 +66,7 @@ internal List<Result> PluginsSearch(string searchName)
6366
{
6467
Title = $"{x.Name} by {x.Author}",
6568
SubTitle = x.Description,
66-
IcoPath = "Images\\plugin.png",
69+
IcoPath = icoPath,
6770
Action = e =>
6871
{
6972
PluginInstall(x);
@@ -83,7 +86,7 @@ internal List<Result> PluginsSearch(string searchName)
8386
{
8487
Title = $"{x.Name} by {x.Author}",
8588
SubTitle = x.Description,
86-
IcoPath = "Images\\plugin.png",
89+
IcoPath = icoPath,
8790
Action = e =>
8891
{
8992
PluginInstall(x);

0 commit comments

Comments
 (0)