wok view lxpanel/stuff/batt.chg.level.patch @ rev 16597
ARM: Add python-pifacecommon python-pifacedigitalio (let play with PiFace)
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Wed May 07 14:57:33 2014 +0200 (2014-05-07) |
parents | |
children |
line source
1 --- /src/plugins/batt/batt_sys.c.orig
2 +++ /src/plugins/batt/batt_sys.c
3 @@ -220,7 +220,7 @@
4 if (b->last_capacity < MIN_CAPACITY)
5 b->percentage = 0;
6 else
7 - b->percentage = ((float) b->remaining_energy * 100.0) / (float) b->last_capacity_unit;
8 + b->percentage = ((float) b->remaining_capacity * 100.0) / (float) b->last_capacity;
10 if (b->percentage > 100)
11 b->percentage = 100;