From 3af260d60405e72658f5345dc33335e4480f8ebb Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Fri, 4 Oct 2024 00:46:03 +0200 Subject: [PATCH] Ignore resize calls to Text --- gfx/text.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gfx/text.lua b/gfx/text.lua index 9fb67f6..eb992d9 100644 --- a/gfx/text.lua +++ b/gfx/text.lua @@ -42,15 +42,15 @@ function Text:getWidth() end function Text:setWidth() - error("Dimensions are derived from content") + end function Text:setHeight() - error("Dimensions are derived from content") + end function Text:resize() - error("Dimensions are derived from content") + end return Text \ No newline at end of file