Skip to content

Commit b962e4d

Browse files
committed
use const instead of strings
1 parent 8df4de9 commit b962e4d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Plugins/Flow.Launcher.Plugin.Program/Settings.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System;
1+
using System;
22
using System.Collections.Generic;
33
using System.IO;
44

@@ -14,11 +14,13 @@ public class Settings
1414
public bool EnableStartMenuSource { get; set; } = true;
1515

1616
public bool EnableRegistrySource { get; set; } = true;
17-
public string CustomizedExploere { get; set; } = "exploere";
17+
public string CustomizedExplorer { get; set; } = Explorer;
1818
public string CustomizedArgs { get; set; } = "";
1919

2020
internal const char SuffixSeperator = ';';
2121

22+
internal const string Explorer = "explorer";
23+
2224
/// <summary>
2325
/// Contains user added folder location contents as well as all user disabled applications
2426
/// </summary>

0 commit comments

Comments
 (0)