Fix rendering issues in children
This commit is contained in:
parent
8483ffeaaf
commit
065940ff2c
@ -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
|
||||
|
@ -573,6 +573,7 @@ local PAGES = {
|
||||
requestCapProgress:setProgress(pageState.request / group:getItemCount())
|
||||
|
||||
requestCountList:adjustPositions()
|
||||
stuffContainer:setDirty(true)
|
||||
end
|
||||
|
||||
local function bindRequestButton(increment)
|
||||
|
Loading…
x
Reference in New Issue
Block a user