Fix graphics reloading in Text element
This commit is contained in:
parent
3e17d0af7d
commit
416e6a1758
11
gfx/text.lua
11
gfx/text.lua
@ -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()
|
||||
|
Loading…
x
Reference in New Issue
Block a user