diff --git a/gfx/container.lua b/gfx/container.lua index 44dc18e..1bbd44e 100644 --- a/gfx/container.lua +++ b/gfx/container.lua @@ -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 diff --git a/gfx/prop/children.lua b/gfx/prop/children.lua index 04ad9f6..c8a6877 100644 --- a/gfx/prop/children.lua +++ b/gfx/prop/children.lua @@ -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 diff --git a/itemcontroller.lua b/itemcontroller.lua index 92239f6..861198d 100644 --- a/itemcontroller.lua +++ b/itemcontroller.lua @@ -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),