From 43603b8f4e732e17f960e5b775a3e2eaba24ba5e Mon Sep 17 00:00:00 2001 From: Jeremy Date: Mon, 24 Jan 2022 08:16:17 +1100 Subject: [PATCH] open plugin website from context menu --- Flow.Launcher/ViewModel/MainViewModel.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Flow.Launcher/ViewModel/MainViewModel.cs b/Flow.Launcher/ViewModel/MainViewModel.cs index 2fa9bf1a2..2395f8de2 100644 --- a/Flow.Launcher/ViewModel/MainViewModel.cs +++ b/Flow.Launcher/ViewModel/MainViewModel.cs @@ -719,7 +719,11 @@ namespace Flow.Launcher.ViewModel IcoPath = icon, SubTitle = subtitle, PluginDirectory = metadata.PluginDirectory, - Action = _ => false + Action = _ => + { + App.API.OpenUrl(metadata.Website); + return true; + } }; return menu; }