feat : App drawer color

This commit is contained in:
MrSluffy
2025-01-07 14:29:00 +08:00
parent 134c2193d2
commit 66928cc74d
8 changed files with 38 additions and 3 deletions

View File

@@ -217,6 +217,8 @@ public class AllAppsState extends LauncherState {
@Override
public int getWorkspaceScrimColor(Launcher launcher) {
return LawnchairUtilsKt.getAllAppsScrimColor(launcher);
return launcher.getDeviceProfile().isTablet
? launcher.getResources().getColor(android.R.color.transparent)
: LawnchairUtilsKt.getAllAppsScrimColor(launcher);
}
}