Launcher: remove 50 item limit, fixes #200
This commit is contained in:
parent
a72b896c5f
commit
fe6ecf7daf
1 changed files with 1 additions and 2 deletions
|
|
@ -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))
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue