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 8df4de9 commit b962e4dCopy full SHA for b962e4d
Plugins/Flow.Launcher.Plugin.Program/Settings.cs
@@ -1,4 +1,4 @@
1
-using System;
+using System;
2
using System.Collections.Generic;
3
using System.IO;
4
@@ -14,11 +14,13 @@ public class Settings
14
public bool EnableStartMenuSource { get; set; } = true;
15
16
public bool EnableRegistrySource { get; set; } = true;
17
- public string CustomizedExploere { get; set; } = "exploere";
+ public string CustomizedExplorer { get; set; } = Explorer;
18
public string CustomizedArgs { get; set; } = "";
19
20
internal const char SuffixSeperator = ';';
21
22
+ internal const string Explorer = "explorer";
23
+
24
/// <summary>
25
/// Contains user added folder location contents as well as all user disabled applications
26
/// </summary>
0 commit comments