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

@@ -499,6 +499,7 @@ function ReaderRolling:updateBatteryState()
DEBUG("update battery state")
if self.view.view_mode == "page" then
local powerd = Device:getPowerDevice()
-- -1 is CR_BATTERY_STATE_CHARGING @ crengine/crengine/include/lvdocview.h
local state = powerd:isCharging() and -1 or powerd:getCapacity()
if state then
self.ui.document:setBatteryState(state)