diff --git a/gfx/prop/children.lua b/gfx/prop/children.lua index 256de07..9290ac7 100644 --- a/gfx/prop/children.lua +++ b/gfx/prop/children.lua @@ -71,10 +71,8 @@ function Children:with(elementType) function elementType:setDirty(fullInvalidate) Element.setDirty(self, fullInvalidate) - if fullInvalidate then - for _,child in self:_iterateChildren() do - child:setDirty(fullInvalidate) - end + for _,child in self:_iterateChildren() do + child:setDirty(fullInvalidate) end end diff --git a/itemcontroller.lua b/itemcontroller.lua index 42efb81..754450f 100644 --- a/itemcontroller.lua +++ b/itemcontroller.lua @@ -570,7 +570,7 @@ local PAGES = { dataAvailableText:setText(availableText) requestCapProgress:setProgress(pageState.request / group:getItemCount()) - stuffContainer:setDirty(true) + stuffContainer:adjustPositions() end local function bindRequestButton(increment)