kobo: always set light intensity to 0 if state is nil or false

This commit is contained in:
Qingping Hou
2016-03-01 22:42:50 -08:00
committed by NiLuJe
parent cf3b97537b
commit 08b08d69f7

View File

@@ -124,8 +124,15 @@ if Device:isKobo() then
powerd.fl_intensity = intensity or powerd.fl_intensity
local state = G_reader_settings:readSetting("frontlight_state")
if state then
-- Default state is off
-- default state is off, turn it on
powerd:toggleFrontlight()
else
-- the light can still be turned on manually outside of koreader
-- or nickel. so we always set the intensity to 0 here to keep it
-- in sync with the default state
-- NOTE: we cant use setIntensity method here because for kobo the
-- min intensity is 1 :(
powerd.fl:setBrightness(0)
end
end
if Device:getCodeName() == "trilogy" then