wok-next annotate lxpanel/stuff/batt.chg.level.patch @ rev 12611
libdesktop-agnostic: fix WGET_URL
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun Apr 29 09:38:43 2012 +0200 (2012-04-29) |
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; |