Re-enable check when fuzzy search is enabled

This commit is contained in:
Jan Koll 2025-06-26 22:57:29 +02:00
parent 19e40bb1b7
commit bf6eae8bde

View file

@ -74,7 +74,7 @@ class AppFilter(
if (itemLabel.startsWith(normalizedQuery)) { if (itemLabel.startsWith(normalizedQuery)) {
appsSecondary.add(item); appsSecondary.add(item);
} else if (itemLabel.contains(normalizedQuery) && !LauncherPreferences.functionality().searchFuzzy()) { } else if (itemLabel.contains(normalizedQuery)) {
appsSecondary.add(item) appsSecondary.add(item)
} else { } else {
if (isSubsequent(itemLabel, normalizedQuery)) { if (isSubsequent(itemLabel, normalizedQuery)) {