wok-6.x diff lxpanel/stuff/batt.chg.level.patch @ rev 12775
Fix typo in last commit
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Sun May 13 04:51:07 2012 +0200 (2012-05-13) |
parents | |
children |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/lxpanel/stuff/batt.chg.level.patch Sun May 13 04:51:07 2012 +0200 1.3 @@ -0,0 +1,11 @@ 1.4 +--- /src/plugins/batt/batt_sys.c.orig 1.5 ++++ /src/plugins/batt/batt_sys.c 1.6 +@@ -220,7 +220,7 @@ 1.7 + if (b->last_capacity < MIN_CAPACITY) 1.8 + b->percentage = 0; 1.9 + else 1.10 +- b->percentage = ((float) b->remaining_energy * 100.0) / (float) b->last_capacity_unit; 1.11 ++ b->percentage = ((float) b->remaining_capacity * 100.0) / (float) b->last_capacity; 1.12 + 1.13 + if (b->percentage > 100) 1.14 + b->percentage = 100;