Skip to content

Commit 721a658

Browse files
committed
Change Space Position for NewWindow
1 parent 9369589 commit 721a658

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Flow.Launcher.Plugin/SharedCommands/SearchWeb.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public static void OpenInBrowserWindow(this string url, string browserPath = "",
4949
var browser = string.IsNullOrEmpty(browserExecutableName) ? "chrome" : browserPath;
5050

5151
// Internet Explorer will open url in new browser window, and does not take the --new-window parameter
52-
var browserArguements = (browserExecutableName == "iexplore.exe" ? "" : "--new-window ") + (inPrivate ? $" {privateArg}" : "") + url;
52+
var browserArguements = (browserExecutableName == "iexplore.exe" ? "" : "--new-window ") + (inPrivate ? $"{privateArg} " : "") + url;
5353

5454
var psi = new ProcessStartInfo
5555
{

0 commit comments

Comments
 (0)