diff --git a/gfx/prop/children.lua b/gfx/prop/children.lua index 91f837d..04ad9f6 100644 --- a/gfx/prop/children.lua +++ b/gfx/prop/children.lua @@ -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 diff --git a/itemcontroller.lua b/itemcontroller.lua index 5ee8624..0025419 100644 --- a/itemcontroller.lua +++ b/itemcontroller.lua @@ -573,6 +573,7 @@ local PAGES = { requestCapProgress:setProgress(pageState.request / group:getItemCount()) requestCountList:adjustPositions() + stuffContainer:setDirty(true) end local function bindRequestButton(increment)