Reload Container children

This commit is contained in:
Gabriel Tofvesson 2024-10-12 23:03:07 +02:00
parent f7754f4609
commit 27f87b4bae
3 changed files with 4 additions and 5 deletions

View File

@ -46,6 +46,7 @@ function Container:_reload()
for _,child in self:_iterateChildren() do
if child:_getWindow() ~= win then
child:setParent(win)
child:_reload()
end
end
end

View File

@ -5,7 +5,7 @@ local Children = Prop:new{ defaultState = {}, uid = "CHILDREN" }
function Children:with(elementType)
local propSelf = self
function elementType:_iterateChildren(opts)
function elementType:_iterateChildren()
return ipairs(self:_children())
end

View File

@ -360,9 +360,7 @@ local PAGES = {
local function tabActionButton(count)
local text = count < 0 and ("<"..tostring(-count)) or (tostring(count)..">")
return Padding:new{
element = Text:new{ id = tostring(count), text = text }
}
return Text:new{ id = tostring(count), text = text }
end
local function tabActionButtonID(index, interval, count, sign)
@ -410,7 +408,7 @@ local PAGES = {
local ACTION_COUNT = 3
local ACTION_INTERVAL = 5
local ACTION_SPACING = 1
local ACTION_SPACING = 0
local actions = {
tabActionList(ACTION_INTERVAL, ACTION_COUNT, 1, ACTION_SPACING),