Skip to content

Commit b123c09

Browse files
Remove unused settings
1 parent 099021b commit b123c09

File tree

2 files changed

+0
-19
lines changed

2 files changed

+0
-19
lines changed

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

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -121,13 +121,6 @@ private void RemoveRedundantSuffixes()
121121
public bool EnablePathSource { get; set; } = false;
122122
public bool EnableUWP { get; set; } = true;
123123

124-
public string CustomizedExplorer { get; set; } = Explorer;
125-
public string CustomizedArgs { get; set; } = ExplorerArgs;
126-
127124
internal const char SuffixSeparator = ';';
128-
129-
internal const string Explorer = "explorer";
130-
131-
internal const string ExplorerArgs = "%s";
132125
}
133126
}

Plugins/Flow.Launcher.Plugin.Program/Views/ProgramSetting.xaml.cs

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -87,18 +87,6 @@ public bool EnableUWP
8787
}
8888
}
8989

90-
public string CustomizedExplorerPath
91-
{
92-
get => _settings.CustomizedExplorer;
93-
set => _settings.CustomizedExplorer = value;
94-
}
95-
96-
public string CustomizedExplorerArg
97-
{
98-
get => _settings.CustomizedArgs;
99-
set => _settings.CustomizedArgs = value;
100-
}
101-
10290
public bool ShowUWPCheckbox => UWP.SupportUWP();
10391

10492
public ProgramSetting(PluginInitContext context, Settings settings, Win32[] win32s, UWP.Application[] uwps)

0 commit comments

Comments
 (0)