diff options
Diffstat (limited to 'modules/launcher/AppList.qml')
| -rw-r--r-- | modules/launcher/AppList.qml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/launcher/AppList.qml b/modules/launcher/AppList.qml index 891c362..857515a 100644 --- a/modules/launcher/AppList.qml +++ b/modules/launcher/AppList.qml @@ -23,14 +23,14 @@ StyledListView { if (isCalc) return [0]; if (isScheme) - return Schemes.fuzzyQuery(text); + return Schemes.query(text); if (isVariant) - return M3Variants.fuzzyQuery(text); + return M3Variants.query(text); if (isAction) - return Actions.fuzzyQuery(text); + return Actions.query(text); if (text.startsWith(Config.launcher.actionPrefix)) text = search.text.slice(Config.launcher.actionPrefix.length); - return Apps.fuzzyQuery(text); + return Apps.query(text); } model: ScriptModel { |