Ignore resize calls to Text

This commit is contained in:
Gabriel Tofvesson 2024-10-04 00:46:03 +02:00
parent a131df6d3d
commit 3af260d604

@ -42,15 +42,15 @@ function Text:getWidth()
end end
function Text:setWidth() function Text:setWidth()
error("Dimensions are derived from content")
end end
function Text:setHeight() function Text:setHeight()
error("Dimensions are derived from content")
end end
function Text:resize() function Text:resize()
error("Dimensions are derived from content")
end end
return Text return Text