From 585e2627bf6a1e92181a1692cf81dc2d65afceb6 Mon Sep 17 00:00:00 2001 From: Jeremy Wu Date: Tue, 6 Aug 2019 22:23:41 +1000 Subject: [PATCH] Use shared command and open in new browser window --- Plugins/Wox.Plugin.BrowserBookmark/Main.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Plugins/Wox.Plugin.BrowserBookmark/Main.cs b/Plugins/Wox.Plugin.BrowserBookmark/Main.cs index f0a595f2fb..23f1135a6f 100644 --- a/Plugins/Wox.Plugin.BrowserBookmark/Main.cs +++ b/Plugins/Wox.Plugin.BrowserBookmark/Main.cs @@ -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();