mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Edit default browser behavior
This commit is contained in:
parent
7a303677c1
commit
47562eabf3
2 changed files with 2 additions and 2 deletions
|
|
@ -100,7 +100,7 @@ namespace Flow.Launcher.Infrastructure.UserSettings
|
|||
{
|
||||
Name = "Default",
|
||||
Path = "*",
|
||||
PrivateArg = "*",
|
||||
PrivateArg = "",
|
||||
EnablePrivate = false,
|
||||
Editable = false
|
||||
}
|
||||
|
|
|
|||
|
|
@ -214,7 +214,7 @@ namespace Flow.Launcher
|
|||
using var process = new Process();
|
||||
var browserInfo = _settingsVM.Settings.CustomBrowser;
|
||||
|
||||
var path = browserInfo.Path == "Default" ? "" : browserInfo.Path;
|
||||
var path = browserInfo.Path == "*" ? "" : browserInfo.Path;
|
||||
|
||||
if (browserInfo.Path == "Default")
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue