mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-11 05:52:19 +02:00
display plugin icons in 'wpm list/uninstall'
This commit is contained in:
@@ -209,7 +209,7 @@ namespace Wox.Plugin.PluginManagement
|
|||||||
{
|
{
|
||||||
Title = plugin.Name,
|
Title = plugin.Name,
|
||||||
SubTitle = plugin.Description,
|
SubTitle = plugin.Description,
|
||||||
IcoPath = "Images\\plugin.png",
|
IcoPath = plugin.FullIcoPath,
|
||||||
Action = e =>
|
Action = e =>
|
||||||
{
|
{
|
||||||
UnInstalledPlugins(plugin);
|
UnInstalledPlugins(plugin);
|
||||||
@@ -239,7 +239,7 @@ namespace Wox.Plugin.PluginManagement
|
|||||||
{
|
{
|
||||||
Title = plugin.Name + " - " + plugin.ActionKeyword,
|
Title = plugin.Name + " - " + plugin.ActionKeyword,
|
||||||
SubTitle = plugin.Description,
|
SubTitle = plugin.Description,
|
||||||
IcoPath = "Images\\plugin.png"
|
IcoPath = plugin.FullIcoPath
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
return results;
|
return results;
|
||||||
|
|||||||
Reference in New Issue
Block a user