use open tab in browser

This commit is contained in:
Jeremy Wu 2020-12-17 06:31:33 +11:00
parent 407ff82666
commit 919f72ba62

View file

@ -31,7 +31,7 @@ namespace Flow.Launcher.Plugin.PluginsManager
IcoPath = "Images\\website.png",
Action = _ =>
{
SharedCommands.SearchWeb.NewBrowserWindow(pluginManifestInfo.Website);
SharedCommands.SearchWeb.NewTabInBrowser(pluginManifestInfo.Website);
return true;
}
},
@ -42,7 +42,7 @@ namespace Flow.Launcher.Plugin.PluginsManager
IcoPath = "Images\\sourcecode.png",
Action = _ =>
{
SharedCommands.SearchWeb.NewBrowserWindow(pluginManifestInfo.UrlSourceCode);
SharedCommands.SearchWeb.NewTabInBrowser(pluginManifestInfo.UrlSourceCode);
return true;
}
},