Rename for clarity

This commit is contained in:
Vic 2023-03-29 15:19:55 +08:00
parent 9db13fdbb6
commit 2a96f1cd48
2 changed files with 2 additions and 2 deletions

View file

@ -109,7 +109,7 @@ namespace Flow.Launcher.Plugin.Explorer.Search
}
// If path search is disabled just open it in file manager
if (Settings.DefaultOpenInFileManager || (!Settings.PathSearchKeywordEnabled && !Settings.SearchActionKeywordEnabled))
if (Settings.DefaultOpenFolderInFileManager || (!Settings.PathSearchKeywordEnabled && !Settings.SearchActionKeywordEnabled))
{
try
{

View file

@ -32,7 +32,7 @@ namespace Flow.Launcher.Plugin.Explorer
public bool ShowWindowsContextMenu { get; set; } = true;
public bool DefaultOpenInFileManager { get; set; } = false;
public bool DefaultOpenFolderInFileManager { get; set; } = false;
public string SearchActionKeyword { get; set; } = Query.GlobalPluginWildcardSign;