We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a02d020 commit f35d36bCopy full SHA for f35d36b
Flow.Launcher.Infrastructure/UserSettings/Settings.cs
@@ -42,7 +42,7 @@ public string Language
42
public int CustomExplorerIndex { get; set; } = 0;
43
public CustomExplorerViewModel CustomExplorer
44
{
45
- get => CustomExplorerList[CustomExplorerIndex];
+ get => CustomExplorerList[CustomExplorerIndex < CustomExplorerList.Count ? CustomExplorerIndex : 0];
46
set => CustomExplorerList[CustomExplorerIndex] = value;
47
}
48
@@ -69,7 +69,7 @@ public CustomExplorerViewModel CustomExplorer
69
Path = @"C:\Program Files\GPSoftware\Directory Opus\dopusrt.exe",
70
DirectoryArgument = "/cmd Go \"%d\"",
71
FileArgument = "/cmd Go \"%f\""
72
-
+
73
},
74
new()
75
0 commit comments