From e193427e4c6a1cc500ef83af1e16789b61962b4c Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Wed, 16 Oct 2024 00:41:04 +0200 Subject: [PATCH] Fix reverse indexed iterations --- gfx/prop/children.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gfx/prop/children.lua b/gfx/prop/children.lua index cdd207f..bb7a63f 100644 --- a/gfx/prop/children.lua +++ b/gfx/prop/children.lua @@ -13,11 +13,11 @@ function Children:with(elementType) function elementType:_iterateChildrenReversed() local children = self:_children() return function(tbl, idx) - if idx < 1 then + if idx <= 1 then return nil, nil end - return idx - 1, tbl[idx] - end, children, #children + return idx - 1, tbl[idx - 1] + end, children, #children + 1 end function elementType:_children()