Fix rendering issues in children

This commit is contained in:
Gabriel Tofvesson 2024-10-12 05:33:04 +02:00
parent 8483ffeaaf
commit 065940ff2c
2 changed files with 7 additions and 3 deletions

View File

@ -90,12 +90,15 @@ function Children:with(elementType)
end
function elementType:draw()
local wasDirty = Element._isDirty(self);
local dirty = Element.draw(self)
if Element._isDirty(self) then
if wasDirty then
self:_getWindow().clear()
end
for _,child in self:_iterateChildren() do
dirty = child:draw() or dirty
if dirty then
for _,child in self:_iterateChildren() do
dirty = child:draw() or dirty
end
end
return dirty
end

View File

@ -573,6 +573,7 @@ local PAGES = {
requestCapProgress:setProgress(pageState.request / group:getItemCount())
requestCountList:adjustPositions()
stuffContainer:setDirty(true)
end
local function bindRequestButton(increment)