mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-27 23:36:47 +00:00
fix(allapps): Fix inverted condition on hiding drawer folders in work/private profiles (#6004)
The previous PR (#6002) had an inverted condition. This commit fixes this issue by removing the "not" sign.
This commit is contained in:
@@ -84,7 +84,7 @@ class LawnchairAlphabeticalAppsList<T>(
|
||||
var position = startPosition
|
||||
|
||||
// Show app drawer folders only on main profile, to prevent state complexity
|
||||
if (!isWorkOrPrivateSpace(appList)) return super.addAppsWithSections(appList, position)
|
||||
if (isWorkOrPrivateSpace(appList)) return super.addAppsWithSections(appList, position)
|
||||
|
||||
if (!drawerListDefault) {
|
||||
val categorizedApps = potsManager.categorizeApps(appList)
|
||||
|
||||
Reference in New Issue
Block a user