Skip to content

Commit 0c3a37e

Browse files
committed
change logic
1 parent 192d64b commit 0c3a37e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Plugins/Flow.Launcher.Plugin.Explorer/Search/ResultManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ internal static Result CreateFolderResult(string title, string subtitle, string
2828
TitleHighlightData = StringMatcher.FuzzySearch(query.Search, title).MatchData,
2929
Action = c =>
3030
{
31-
if (c.SpecialKeyState.CtrlPressed || !(Settings.EnabledPathSearchKeyword || Settings.EnabledSearchActionKeyword))
31+
if (c.SpecialKeyState.CtrlPressed || (!Settings.EnabledPathSearchKeyword && !Settings.EnabledSearchActionKeyword))
3232
{
3333
try
3434
{

0 commit comments

Comments
 (0)