wok annotate lxpanel/stuff/batt.chg.level.patch @ rev 13989
viewnior: fix missing lxpanel icon
author | ernia <monghitri@aruba.it> |
---|---|
date | Sat Feb 09 21:46:41 2013 +0000 (2013-02-09) |
parents | |
children |
rev | line source |
---|---|
mojo@12194 | 1 --- /src/plugins/batt/batt_sys.c.orig |
mojo@12194 | 2 +++ /src/plugins/batt/batt_sys.c |
mojo@12194 | 3 @@ -220,7 +220,7 @@ |
mojo@12194 | 4 if (b->last_capacity < MIN_CAPACITY) |
mojo@12194 | 5 b->percentage = 0; |
mojo@12194 | 6 else |
mojo@12194 | 7 - b->percentage = ((float) b->remaining_energy * 100.0) / (float) b->last_capacity_unit; |
mojo@12194 | 8 + b->percentage = ((float) b->remaining_capacity * 100.0) / (float) b->last_capacity; |
mojo@12194 | 9 |
mojo@12194 | 10 if (b->percentage > 100) |
mojo@12194 | 11 b->percentage = 100; |