Fix graphics reloading in Text element

This commit is contained in:
Gabriel Tofvesson 2024-10-01 15:59:30 +00:00
parent 3e17d0af7d
commit 416e6a1758

View File

@ -9,8 +9,15 @@ function Text:new(o)
end
function Text:setText(text)
self:setDirty()
self.text = text
if self.text ~= text then
self:setDirty()
local needReload = #self.text ~= #text
self.text = text
if needReload then
self:_reload()
end
end
end
function Text:draw()