From 416e6a175819e9de15758aca3c5e89f77bfcd42b Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Tue, 1 Oct 2024 15:59:30 +0000 Subject: [PATCH] Fix graphics reloading in Text element --- gfx/text.lua | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/gfx/text.lua b/gfx/text.lua index a37cd69..c99e200 100644 --- a/gfx/text.lua +++ b/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()