Skip to content

Commit f77cd9b

Browse files
committed
add browser path to open method in browser bookmark plugin
1 parent 11948c1 commit f77cd9b

File tree

1 file changed

+2
-2
lines changed
  • Plugins/Wox.Plugin.BrowserBookmark

1 file changed

+2
-2
lines changed

Plugins/Wox.Plugin.BrowserBookmark/Main.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,11 @@ public List<Result> Query(Query query)
5757
{
5858
if (_settings.OpenInNewBrowserWindow)
5959
{
60-
c.Url.NewBrowserWindow("");
60+
c.Url.NewBrowserWindow(_settings.BrowserPath);
6161
}
6262
else
6363
{
64-
c.Url.NewTabInBrowser("");
64+
c.Url.NewTabInBrowser(_settings.BrowserPath);
6565
}
6666

6767
return true;

0 commit comments

Comments
 (0)