diff --git a/gfx/prop/children.lua b/gfx/prop/children.lua index 46088de..5389c99 100644 --- a/gfx/prop/children.lua +++ b/gfx/prop/children.lua @@ -6,14 +6,7 @@ local Children = Prop:new{ defaultState = {}, uid = "CHILDREN" } function Children:with(elementType) local propSelf = self function elementType:_iterateChildren(opts) - local tbl = propSelf:with(self) - local start, finish = ((opts and opts.from) or 1) - 1, (opts and opts.to) or #tbl - return function(t, i) - if i > finish then - return nil, nil - end - return i + 1, t[i + 1] - end, tbl, start + return ipairs(propSelf:getState(self)) end function elementType:childCount()