From 6a4d2d0375b41cad862bddb2035d989db57c5f37 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Sat, 26 Oct 2024 19:26:25 +0200 Subject: [PATCH] Simplify Text implementation --- gfx/text.lua | 7 ------- 1 file changed, 7 deletions(-) diff --git a/gfx/text.lua b/gfx/text.lua index 91335bb..75fe391 100644 --- a/gfx/text.lua +++ b/gfx/text.lua @@ -1,13 +1,6 @@ local Element = require("gfx.element") 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) local current = self:getText() if current ~= text then