TextWidget: Feed Geom a full-size table in getSize()

Might save a realloc down the line.
This commit is contained in:
NiLuJe
2022-12-26 19:24:50 +01:00
parent 04c8bc903e
commit 3743229ffe

View File

@@ -292,6 +292,8 @@ end
function TextWidget:getSize()
self:updateSize()
return Geom:new{
x = 0,
y = 0,
w = self._length,
h = self.forced_height or self._height,
}