mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-01-18 22:43:31 +08:00
display plugin icons in 'wpm list/uninstall'
This commit is contained in:
parent
b489e54da4
commit
374ed12811
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user