maxHeight = Math.max(maxHeight, childHeight);
}
if (move) {
double childX = x + clientX, childY = y + clientY;
if (justify.get() || fill.get() || center.get()) {
bounds[i] = new BoundingBox(childX, childY, childWidth, childHeight);
} else {
child.resizeRelocate(childX, childY, childWidth, childHeight);
}
}
x += spacing.get() + childWidth;