mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2025-12-07 05:55:37 -05:00
Make recent apps a category
This commit is contained in:
@@ -158,9 +158,9 @@ Singleton {
|
||||
return a.name.localeCompare(b.name) // Alphabetical tiebreaker
|
||||
})
|
||||
|
||||
// Limit to 5 apps
|
||||
if (sortedApps.length > 5) {
|
||||
sortedApps = sortedApps.slice(0, 5)
|
||||
// Limit to 10 apps
|
||||
if (sortedApps.length > 10) {
|
||||
sortedApps = sortedApps.slice(0, 10)
|
||||
}
|
||||
|
||||
// Reassign to trigger property change signal
|
||||
|
||||
Reference in New Issue
Block a user