Prefix battery percentage w/ a + when charging.

Adresses comments on MR.
Add a comment explaining the magic behind CRe's charging icon when using
CRE's full (top) status bar.
This commit is contained in:
NiLuJe
2015-09-09 17:37:35 +02:00
parent 02938163b9
commit ce5f66ccbc
3 changed files with 3 additions and 3 deletions

View File

@@ -196,8 +196,7 @@ end
function ReaderFooter:getBatteryInfo()
local powerd = Device:getPowerDevice()
--local state = powerd:isCharging() and -1 or powerd:getCapacity()
return "B:" .. powerd:getCapacity() .. "%"
return "B:" .. (powerd:isCharging() and "+" or "") .. powerd:getCapacity() .. "%"
end
function ReaderFooter:getTimeInfo()