We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79f0fcb commit d0df278Copy full SHA for d0df278
1 file changed
src/displayapp/screens/BatteryIcon.cpp
@@ -4,13 +4,13 @@
4
using namespace Pinetime::Applications::Screens;
5
6
const char* BatteryIcon::GetBatteryIcon(int batteryPercent) {
7
- if (batteryPercent > 90)
+ if (batteryPercent > 87)
8
return Symbols::batteryFull;
9
- if (batteryPercent > 75)
+ if (batteryPercent > 62)
10
return Symbols::batteryThreeQuarter;
11
- if (batteryPercent > 50)
+ if (batteryPercent > 37)
12
return Symbols::batteryHalf;
13
- if (batteryPercent > 25)
+ if (batteryPercent > 12)
14
return Symbols::batteryOneQuarter;
15
return Symbols::batteryEmpty;
16
}
0 commit comments