Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e5bb7dc7 authored by Adnan Begovic's avatar Adnan Begovic Committed by Android (Google) Code Review
Browse files

Merge "SystemUI: Fix missing color for adaptive backgrounds of mono-icon" into main

parents 2890ca86 55b777b7
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -128,6 +128,7 @@ constructor(
                            intArrayOf(
                                /* background */ res.getColor(R.color.materialColorPrimary),
                                /* icon */ res.getColor(R.color.materialColorSurfaceContainerHigh),
                                /* adaptive background */ res.getColor(R.color.materialColorPrimary)
                            )
                        },
                    )
@@ -145,7 +146,11 @@ constructor(
                MonoIconThemeController(
                    shouldForceThemeIcon = true,
                    colorProvider = { _ ->
                        intArrayOf(/* background */ Color.BLACK, /* icon */ Color.WHITE)
                        intArrayOf(
                            /* background */ Color.BLACK,
                            /* icon */ Color.WHITE,
                            /* adaptive background */ Color.BLACK
                        )
                    },
                )
        }