mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Merge pull request #991 from Flow-Launcher/context_menu_plugin_site
Open plugin website from context menu
This commit is contained in:
commit
50e6aad321
1 changed files with 5 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue