positionChildren runs Position on the children
()
| 1628 | |
| 1629 | // positionChildren runs Position on the children |
| 1630 | func (wb *WidgetBase) positionChildren() { |
| 1631 | wb.forVisibleChildren(func(i int, cw Widget, cwb *WidgetBase) bool { |
| 1632 | cw.Position() |
| 1633 | return tree.Continue |
| 1634 | }) |
| 1635 | } |
| 1636 | |
| 1637 | // Position: uses the final sizes to position everything within layouts |
| 1638 | // according to alignment settings. |
no test coverage detected