mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
add browser path to open method in browser bookmark plugin
This commit is contained in:
parent
11948c1cce
commit
f77cd9bd52
1 changed files with 2 additions and 2 deletions
|
|
@ -57,11 +57,11 @@ namespace Wox.Plugin.BrowserBookmark
|
|||
{
|
||||
if (_settings.OpenInNewBrowserWindow)
|
||||
{
|
||||
c.Url.NewBrowserWindow("");
|
||||
c.Url.NewBrowserWindow(_settings.BrowserPath);
|
||||
}
|
||||
else
|
||||
{
|
||||
c.Url.NewTabInBrowser("");
|
||||
c.Url.NewTabInBrowser(_settings.BrowserPath);
|
||||
}
|
||||
|
||||
return true;
|
||||
|
|
|
|||
Loading…
Reference in a new issue