Fix rendering issues in children
This commit is contained in:
parent
8483ffeaaf
commit
065940ff2c
@ -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
|
||||||
|
@ -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)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user