From 065940ff2c885425201dfc2d4b81b7f42f9d8837 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Sat, 12 Oct 2024 05:33:04 +0200 Subject: [PATCH] Fix rendering issues in children --- gfx/prop/children.lua | 9 ++++++--- itemcontroller.lua | 1 + 2 files changed, 7 insertions(+), 3 deletions(-) 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)