File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
Plugins/Flow.Launcher.Plugin.PluginManager Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,9 @@ namespace Flow.Launcher.Plugin.PluginsManager
12
12
internal class PluginsManager
13
13
{
14
14
private PluginsManifest pluginsManifest ;
15
+
16
+ private string icoPath = "Images\\ plugin.png" ;
17
+
15
18
internal PluginsManager ( )
16
19
{
17
20
pluginsManifest = new PluginsManifest ( ) ;
@@ -63,7 +66,7 @@ internal List<Result> PluginsSearch(string searchName)
63
66
{
64
67
Title = $ "{ x . Name } by { x . Author } ",
65
68
SubTitle = x . Description ,
66
- IcoPath = "Images \\ plugin.png" ,
69
+ IcoPath = icoPath ,
67
70
Action = e =>
68
71
{
69
72
PluginInstall ( x ) ;
@@ -83,7 +86,7 @@ internal List<Result> PluginsSearch(string searchName)
83
86
{
84
87
Title = $ "{ x . Name } by { x . Author } ",
85
88
SubTitle = x . Description ,
86
- IcoPath = "Images \\ plugin.png" ,
89
+ IcoPath = icoPath ,
87
90
Action = e =>
88
91
{
89
92
PluginInstall ( x ) ;
You can’t perform that action at this time.
0 commit comments