From b962e4dcb1b0307ca79a3713125425a1d7bf79bb Mon Sep 17 00:00:00 2001 From: Jeremy Wu Date: Mon, 9 Nov 2020 08:24:31 +1100 Subject: [PATCH] use const instead of strings --- Plugins/Flow.Launcher.Plugin.Program/Settings.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Plugins/Flow.Launcher.Plugin.Program/Settings.cs b/Plugins/Flow.Launcher.Plugin.Program/Settings.cs index 5b4131f05..beed46a7b 100644 --- a/Plugins/Flow.Launcher.Plugin.Program/Settings.cs +++ b/Plugins/Flow.Launcher.Plugin.Program/Settings.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.IO; @@ -14,11 +14,13 @@ namespace Flow.Launcher.Plugin.Program public bool EnableStartMenuSource { get; set; } = true; public bool EnableRegistrySource { get; set; } = true; - public string CustomizedExploere { get; set; } = "exploere"; + public string CustomizedExplorer { get; set; } = Explorer; public string CustomizedArgs { get; set; } = ""; internal const char SuffixSeperator = ';'; + internal const string Explorer = "explorer"; + /// /// Contains user added folder location contents as well as all user disabled applications ///