()
| 810 | } |
| 811 | |
| 812 | func (sl *Splits) RenderWidget() { |
| 813 | if sl.PushBounds() { |
| 814 | sl.ForWidgetChildren(func(i int, kwi Widget, cwb *WidgetBase) bool { |
| 815 | cwb.SetState(sl.ChildIsCollapsed(i), states.Invisible) |
| 816 | kwi.RenderWidget() |
| 817 | return tree.Continue |
| 818 | }) |
| 819 | sl.renderParts() |
| 820 | sl.PopBounds() |
| 821 | } |
| 822 | } |
nothing calls this directly
no test coverage detected