summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/status.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/status.c b/apps/status.c
index 91379bb..3921a3b 100644
--- a/apps/status.c
+++ b/apps/status.c
@@ -206,7 +206,7 @@ void status_draw(void)
plug_state = true;
if (charge_state > 0) /* charge || top off || trickle */
global_settings.runtime = 0;
- if ((charge_state == 1) || (charge_state == 2 )) { /* animate battery if charging or top-off charging*/
+ if (charge_state == 1) { /* animate battery if charging */
battlevel = battery_charge_step * 34; /* 34 for a better look */
battlevel = battlevel > 100 ? 100 : battlevel;
if(TIME_AFTER(current_tick, switch_tick)) {