Add update of the top and bottom status bars, on +/-Charging (#7379)

This commit is contained in:
zwim
2021-04-04 12:17:09 +02:00
committed by GitHub
parent 627065c354
commit 10922561dd
3 changed files with 22 additions and 0 deletions

View File

@@ -199,6 +199,12 @@ function Device:init()
end)
end
end
elseif ev.code == C.AEVENT_POWER_CONNECTED then
local Event = require("ui/event")
UIManager:broadcastEvent(Event:new("Charging"))
elseif ev.code == C.AEVENT_POWER_DISCONNECTED then
local Event = require("ui/event")
UIManager:broadcastEvent(Event:new("NotCharging"))
end
end,
hasClipboardText = function()