make the date field consistent
This commit is contained in:
parent
8f06ef9b81
commit
2f65d5a26f
|
@ -140,7 +140,8 @@ local function draw_text_multiline(font, text, x, y, color)
|
||||||
return resx, y
|
return resx, y
|
||||||
end
|
end
|
||||||
|
|
||||||
|
-- this is just to get a date string that's consistent
|
||||||
|
local datestr = os.date()
|
||||||
function LogView:draw()
|
function LogView:draw()
|
||||||
self:draw_background(style.background)
|
self:draw_background(style.background)
|
||||||
|
|
||||||
|
@ -151,7 +152,7 @@ function LogView:draw()
|
||||||
style.icon_font:get_width(style.log.INFO.icon)
|
style.icon_font:get_width(style.log.INFO.icon)
|
||||||
)
|
)
|
||||||
|
|
||||||
local tw = style.font:get_width(os.date())
|
local tw = style.font:get_width(datestr)
|
||||||
for _, item, x, y, w, h in self:each_item() do
|
for _, item, x, y, w, h in self:each_item() do
|
||||||
core.push_clip_rect(x, y, w, h)
|
core.push_clip_rect(x, y, w, h)
|
||||||
x = x + style.padding.x
|
x = x + style.padding.x
|
||||||
|
|
Loading…
Reference in New Issue