Minor cleanup in init.lua
This commit is contained in:
parent
22033bae53
commit
2d4efa6893
4
init.lua
4
init.lua
|
@ -105,7 +105,7 @@ function register(widget, wtype, format, timer, field, padd)
|
||||||
update(widget, reg)
|
update(widget, reg)
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Default to timer=1
|
-- Default to 1s timer
|
||||||
if reg.timer == nil then
|
if reg.timer == nil then
|
||||||
reg.timer = 1
|
reg.timer = 1
|
||||||
end
|
end
|
||||||
|
@ -240,7 +240,7 @@ function update(widget, reg, disablecache)
|
||||||
if widget_cache[reg.type] ~= nil then
|
if widget_cache[reg.type] ~= nil then
|
||||||
local c = widget_cache[reg.type]
|
local c = widget_cache[reg.type]
|
||||||
|
|
||||||
if c.time == nil or c.time <= t-reg.timer or disablecache then
|
if c.time == nil or c.time <= t - reg.timer or disablecache then
|
||||||
c.time = t
|
c.time = t
|
||||||
c.data = reg.type(reg.format, reg.padd)
|
c.data = reg.type(reg.format, reg.padd)
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue