mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
use plugin icopath when displaying uninstall plugins
This commit is contained in:
parent
1a59da4adc
commit
402e2da061
1 changed files with 2 additions and 2 deletions
|
|
@ -14,7 +14,7 @@ namespace Flow.Launcher.Plugin.PluginsManager
|
|||
{
|
||||
internal class PluginsManager
|
||||
{
|
||||
private PluginsManifest pluginsManifest;
|
||||
private readonly PluginsManifest pluginsManifest;
|
||||
private PluginInitContext Context { get; set; }
|
||||
|
||||
private readonly string icoPath = "Images\\plugin.png";
|
||||
|
|
@ -202,7 +202,7 @@ namespace Flow.Launcher.Plugin.PluginsManager
|
|||
{
|
||||
Title = $"{x.Metadata.Name} by {x.Metadata.Author}",
|
||||
SubTitle = x.Metadata.Description,
|
||||
IcoPath = icoPath,
|
||||
IcoPath = x.Metadata.IcoPath,
|
||||
Action = e =>
|
||||
{
|
||||
Application.Current.MainWindow.Hide();
|
||||
|
|
|
|||
Loading…
Reference in a new issue