Ignore resize calls to Text

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

View File

@ -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