mirror of
https://github.com/koreader/koreader.git
synced 2025-08-10 00:52:38 +00:00
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:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user