()
| 193 | } |
| 194 | |
| 195 | func (fr *Frame) RenderWidget() { |
| 196 | if fr.PushBounds() { |
| 197 | fr.This.(Widget).Render() |
| 198 | fr.renderParts() |
| 199 | fr.RenderChildren() |
| 200 | fr.RenderScrolls() |
| 201 | fr.PopBounds() |
| 202 | } |
| 203 | } |
| 204 | |
| 205 | // childWithFocus returns a direct child of this layout that either is the |
| 206 | // current window focus item, or contains that focus item (along with its |
nothing calls this directly
no test coverage detected