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

Unverified Commit 13084310 authored by LuK1337's avatar LuK1337
Browse files

fixup! SystemUI: Bring back good ol' circle battery style once again

Fixes missing battery level for default icon.

Change-Id: I76f608474b645dc3a21e2fe7ae844682b3400f4f
parent c0c936a5
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -139,7 +139,13 @@ private fun BatteryAndPercentChip(
                levelProvider = { level },
                showLevelProvider = { false },
                isFullProvider = { isFull },
                glyphsProvider = { emptyList() },
                glyphsProvider = {
                    if (showPercentNextToIcon) {
                        emptyList()
                    } else {
                        level.glyphRepresentation()
                    }
                },
                colorsProvider = { BatteryColors.DarkTheme.Charging },
                modifier = Modifier.height(height).wrapContentWidth(),
                contentDescription = "",