make-containers-better #10

Merged
sashakoshka merged 20 commits from make-containers-better into main 2023-03-04 14:26:34 -07:00
Showing only changes of commit 4f6f4e1f1a - Show all commits

View File

@ -286,7 +286,7 @@ func (propagator *Propagator) forChildrenReverse (callback func (child elements.
for index := propagator.parent.CountChildren() - 1; index > 0; index -- { for index := propagator.parent.CountChildren() - 1; index > 0; index -- {
child := propagator.parent.Child(index) child := propagator.parent.Child(index)
if child == nil { continue } if child == nil { continue }
if callback(child) { break } if !callback(child) { break }
} }
} }