mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
update icoPath
This commit is contained in:
parent
1587010126
commit
8d96899a82
1 changed files with 5 additions and 2 deletions
|
|
@ -12,6 +12,9 @@ namespace Flow.Launcher.Plugin.PluginsManager
|
|||
internal class PluginsManager
|
||||
{
|
||||
private PluginsManifest pluginsManifest;
|
||||
|
||||
private string icoPath = "Images\\plugin.png";
|
||||
|
||||
internal PluginsManager()
|
||||
{
|
||||
pluginsManifest = new PluginsManifest();
|
||||
|
|
@ -63,7 +66,7 @@ namespace Flow.Launcher.Plugin.PluginsManager
|
|||
{
|
||||
Title = $"{x.Name} by {x.Author}",
|
||||
SubTitle = x.Description,
|
||||
IcoPath = "Images\\plugin.png",
|
||||
IcoPath = icoPath,
|
||||
Action = e =>
|
||||
{
|
||||
PluginInstall(x);
|
||||
|
|
@ -83,7 +86,7 @@ namespace Flow.Launcher.Plugin.PluginsManager
|
|||
{
|
||||
Title = $"{x.Name} by {x.Author}",
|
||||
SubTitle = x.Description,
|
||||
IcoPath = "Images\\plugin.png",
|
||||
IcoPath = icoPath,
|
||||
Action = e =>
|
||||
{
|
||||
PluginInstall(x);
|
||||
|
|
|
|||
Loading…
Reference in a new issue