Open URL in new window browser

This commit is contained in:
Jeremy Wu
2019-08-01 20:52:50 +10:00
parent 4231d7b50a
commit 057108882f

View File

@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Text.RegularExpressions;
@@ -85,7 +85,7 @@ namespace Wox.Plugin.Url
}
else
{
Process.Start(_settings.BrowserPath,raw);
Process.Start(_settings.BrowserPath,"--new-window" + raw);
}
return true;