wok-next diff lxpanel/stuff/batt.chg.level.patch @ rev 18480

syslinux: fix post-install when upgrade the package
No more "XXXXXXXX" here, so post_install() fails
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Oct 08 03:44:14 2015 +0300 (2015-10-08)
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	Thu Oct 08 03:44:14 2015 +0300
     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;