mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Change Space Position for NewWindow
This commit is contained in:
parent
936958947a
commit
721a6580f6
1 changed files with 1 additions and 1 deletions
|
|
@ -49,7 +49,7 @@ namespace Flow.Launcher.Plugin.SharedCommands
|
|||
var browser = string.IsNullOrEmpty(browserExecutableName) ? "chrome" : browserPath;
|
||||
|
||||
// Internet Explorer will open url in new browser window, and does not take the --new-window parameter
|
||||
var browserArguements = (browserExecutableName == "iexplore.exe" ? "" : "--new-window ") + (inPrivate ? $" {privateArg}" : "") + url;
|
||||
var browserArguements = (browserExecutableName == "iexplore.exe" ? "" : "--new-window ") + (inPrivate ? $"{privateArg} " : "") + url;
|
||||
|
||||
var psi = new ProcessStartInfo
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue