SetPaddingsColor sets the color of this panel paddings.
(color *math32.Color)
| 416 | |
| 417 | // SetPaddingsColor sets the color of this panel paddings. |
| 418 | func (p *Panel) SetPaddingsColor(color *math32.Color) { |
| 419 | |
| 420 | p.udata.paddingsColor = math32.Color4{color.R, color.G, color.B, 1} |
| 421 | p.SetChanged(true) |
| 422 | } |
| 423 | |
| 424 | // SetColor sets the color of the panel paddings and content area |
| 425 | func (p *Panel) SetColor(color *math32.Color) *Panel { |
nothing calls this directly
no test coverage detected