mirror of
https://github.com/zoriya/noctalia-shell.git
synced 2026-06-06 12:02:24 +00:00
Launcher: remove 50 item limit, fixes #200
This commit is contained in:
@@ -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))
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user