wok-6.x diff lxpanel/stuff/batt.chg.level.patch @ rev 22473
updated aespipe (2.4e -> 2.4f)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Dec 27 17:45:00 2019 +0100 (2019-12-27) |
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 Fri Dec 27 17:45:00 2019 +0100 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;