Skip to content

Commit 50e6aad

Browse files
authored
Merge pull request #991 from Flow-Launcher/context_menu_plugin_site
Open plugin website from context menu
2 parents 520d237 + 43603b8 commit 50e6aad

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Flow.Launcher/ViewModel/MainViewModel.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -719,7 +719,11 @@ private Result ContextMenuPluginInfo(string id)
719719
IcoPath = icon,
720720
SubTitle = subtitle,
721721
PluginDirectory = metadata.PluginDirectory,
722-
Action = _ => false
722+
Action = _ =>
723+
{
724+
App.API.OpenUrl(metadata.Website);
725+
return true;
726+
}
723727
};
724728
return menu;
725729
}

0 commit comments

Comments
 (0)