Simplify Text implementation

This commit is contained in:
Gabriel Tofvesson 2024-10-26 19:26:25 +02:00
parent f24d33eb77
commit 6a4d2d0375

View File

@ -1,13 +1,6 @@
local Element = require("gfx.element") local Element = require("gfx.element")
local Text = Element:new{ text = "" } local Text = Element:new{ text = "" }
function Text:new(o)
o.width = nil
o.height = nil
return Element.new(self, o)
end
function Text:setText(text) function Text:setText(text)
local current = self:getText() local current = self:getText()
if current ~= text then if current ~= text then