mirror of
https://github.com/jrpie/Launcher.git
synced 2025-06-28 03:45:36 +02:00
Re-enable check when fuzzy search is enabled
This commit is contained in:
parent
19e40bb1b7
commit
bf6eae8bde
1 changed files with 1 additions and 1 deletions
|
@ -74,7 +74,7 @@ class AppFilter(
|
|||
|
||||
if (itemLabel.startsWith(normalizedQuery)) {
|
||||
appsSecondary.add(item);
|
||||
} else if (itemLabel.contains(normalizedQuery) && !LauncherPreferences.functionality().searchFuzzy()) {
|
||||
} else if (itemLabel.contains(normalizedQuery)) {
|
||||
appsSecondary.add(item)
|
||||
} else {
|
||||
if (isSubsequent(itemLabel, normalizedQuery)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue