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 end
function elementType:draw() function elementType:draw()
local wasDirty = Element._isDirty(self);
local dirty = Element.draw(self) local dirty = Element.draw(self)
if Element._isDirty(self) then if wasDirty then
self:_getWindow().clear() self:_getWindow().clear()
end end
for _,child in self:_iterateChildren() do if dirty then
dirty = child:draw() or dirty for _,child in self:_iterateChildren() do
dirty = child:draw() or dirty
end
end end
return dirty return dirty
end end

View File

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