RenderScrolls renders the scrollbars.
()
| 183 | |
| 184 | // RenderScrolls renders the scrollbars. |
| 185 | func (fr *Frame) RenderScrolls() { |
| 186 | for d := math32.X; d <= math32.Y; d++ { |
| 187 | if fr.HasScroll[d] && fr.scrolls[d] != nil { |
| 188 | fr.scrolls[d].RenderWidget() |
| 189 | } |
| 190 | } |
| 191 | } |
| 192 | |
| 193 | // setScrollsOff turns off the scrollbars. |
| 194 | func (fr *Frame) setScrollsOff() { |
no test coverage detected