Merge pull request #13 from jjw24/update_browserbookmarks_open_newbrowser

Update BrowserBookmarks plugin to open in new browser window
This commit is contained in:
Jeremy Wu 2019-08-20 07:48:14 +10:00 committed by GitHub
commit 1761f63acd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,7 @@
using System.Collections.Generic;
using System.Linq;
using Wox.Infrastructure;
using Wox.Plugin.SharedCommands;
namespace Wox.Plugin.BrowserBookmark
{
@ -54,7 +55,7 @@ namespace Wox.Plugin.BrowserBookmark
Action = (e) =>
{
context.API.HideApp();
System.Diagnostics.Process.Start(c.Url);
c.Url.NewBrowserWindow("");
return true;
}
}).ToList();