mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
display plugin icons in 'wpm list/uninstall'
This commit is contained in:
parent
b489e54da4
commit
374ed12811
1 changed files with 2 additions and 2 deletions
|
|
@ -209,7 +209,7 @@ namespace Wox.Plugin.PluginManagement
|
|||
{
|
||||
Title = plugin.Name,
|
||||
SubTitle = plugin.Description,
|
||||
IcoPath = "Images\\plugin.png",
|
||||
IcoPath = plugin.FullIcoPath,
|
||||
Action = e =>
|
||||
{
|
||||
UnInstalledPlugins(plugin);
|
||||
|
|
@ -239,7 +239,7 @@ namespace Wox.Plugin.PluginManagement
|
|||
{
|
||||
Title = plugin.Name + " - " + plugin.ActionKeyword,
|
||||
SubTitle = plugin.Description,
|
||||
IcoPath = "Images\\plugin.png"
|
||||
IcoPath = plugin.FullIcoPath
|
||||
});
|
||||
}
|
||||
return results;
|
||||
|
|
|
|||
Loading…
Reference in a new issue