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() === "") {
|
if (!query || query.trim() === "") {
|
||||||
// Return all apps alphabetically
|
// Return all apps alphabetically
|
||||||
return entries.sort((a, b) => a.name.toLowerCase().localeCompare(b.name.toLowerCase())).slice(
|
return entries.sort((a, b) => a.name.toLowerCase().localeCompare(b.name.toLowerCase()))
|
||||||
0, 50) // Limit to 50 for performance
|
|
||||||
.map(app => createResultEntry(app))
|
.map(app => createResultEntry(app))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue