Add onFrontlightStateChanged event (#2966)

So we do not need the hacky solution in KoboLight plugin anymore. PageFooter can receive and process the event itself.
This commit is contained in:
Hzj_jie
2017-06-19 19:00:36 -07:00
committed by GitHub
parent bd92d68b7f
commit d83de47204
3 changed files with 22 additions and 11 deletions

View File

@@ -122,9 +122,6 @@ end
function KoboLight:onTap()
Device:getPowerDevice():toggleFrontlight()
self:onShowOnOff()
if self.view.footer_visible and self.view.footer.settings.frontlight then
self.view.footer:updateFooter()
end
return true
end
@@ -153,9 +150,6 @@ function KoboLight:onSwipe(_, ges)
powerd:setIntensity(new_intensity)
self:onShowIntensity()
end
if self.view.footer_visible and self.view.footer.settings.frontlight then
self.view.footer:updateFooter()
end
return true
end