Skip to content

Commit 8fa843e

Browse files
committed
fix incorrect icopath context menu
1 parent cec76e5 commit 8fa843e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Plugins/Flow.Launcher.Plugin.PluginsManager/ContextMenu.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public List<Result> LoadContextMenus(Result selectedResult)
2525
{
2626
Title = Context.API.GetTranslation("plugin_pluginsmanager_plugin_contextmenu_openwebsite_title"),
2727
SubTitle = Context.API.GetTranslation("plugin_pluginsmanager_plugin_contextmenu_openwebsite_subtitle"),
28-
IcoPath = "Images\\website.png",
28+
IcoPath = selectedResult.IcoPath,
2929
Action = _ =>
3030
{
3131
SharedCommands.SearchWeb.NewTabInBrowser(pluginManifestInfo.Website);
@@ -63,7 +63,7 @@ public List<Result> LoadContextMenus(Result selectedResult)
6363
{
6464
Title = Context.API.GetTranslation("plugin_pluginsmanager_plugin_contextmenu_pluginsmanifest_title"),
6565
SubTitle = Context.API.GetTranslation("plugin_pluginsmanager_plugin_contextmenu_pluginsmanifest_subtitle"),
66-
IcoPath = selectedResult.IcoPath,
66+
IcoPath = "Images\\manifestsite.png",
6767
Action = _ =>
6868
{
6969
SharedCommands.SearchWeb.NewTabInBrowser("https://github.com/Flow-Launcher/Flow.Launcher.PluginsManifest");

Plugins/Flow.Launcher.Plugin.PluginsManager/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"Name": "Plugins Manager",
77
"Description": "Management of installing, uninstalling or updating Flow Launcher plugins",
88
"Author": "Jeremy Wu",
9-
"Version": "1.6.2",
9+
"Version": "1.6.3",
1010
"Language": "csharp",
1111
"Website": "https://github.com/Flow-Launcher/Flow.Launcher",
1212
"ExecuteFileName": "Flow.Launcher.Plugin.PluginsManager.dll",

0 commit comments

Comments
 (0)