From fe6ecf7daf9285e001a09b99f3e00e4a20e31f57 Mon Sep 17 00:00:00 2001 From: Ly-sec Date: Thu, 4 Sep 2025 18:15:04 +0200 Subject: [PATCH] Launcher: remove 50 item limit, fixes #200 --- Modules/Launcher/Plugins/ApplicationsPlugin.qml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Modules/Launcher/Plugins/ApplicationsPlugin.qml b/Modules/Launcher/Plugins/ApplicationsPlugin.qml index dcc6f6c..36661b0 100644 --- a/Modules/Launcher/Plugins/ApplicationsPlugin.qml +++ b/Modules/Launcher/Plugins/ApplicationsPlugin.qml @@ -37,8 +37,7 @@ Item { if (!query || query.trim() === "") { // Return all apps alphabetically - return entries.sort((a, b) => a.name.toLowerCase().localeCompare(b.name.toLowerCase())).slice( - 0, 50) // Limit to 50 for performance + return entries.sort((a, b) => a.name.toLowerCase().localeCompare(b.name.toLowerCase())) .map(app => createResultEntry(app)) }