()
| 179 | } |
| 180 | |
| 181 | func (fr *Frame) RenderChildren() { |
| 182 | if fr.Styles.Display == styles.Stacked { |
| 183 | wb := fr.StackTopWidget() |
| 184 | if wb != nil { |
| 185 | wb.This.(Widget).RenderWidget() |
| 186 | } |
| 187 | return |
| 188 | } |
| 189 | fr.ForWidgetChildren(func(i int, cw Widget, cwb *WidgetBase) bool { |
| 190 | cw.RenderWidget() |
| 191 | return tree.Continue |
| 192 | }) |
| 193 | } |
| 194 | |
| 195 | func (fr *Frame) RenderWidget() { |
| 196 | if fr.PushBounds() { |
no test coverage detected