SetImageVisible sets the image visibility
(vis bool)
| 82 | |
| 83 | // SetImageVisible sets the image visibility |
| 84 | func (il *ImageLabel) SetImageVisible(vis bool) { |
| 85 | |
| 86 | if il.image == nil { |
| 87 | return |
| 88 | } |
| 89 | il.image.SetVisible(vis) |
| 90 | } |
| 91 | |
| 92 | // ImageVisible returns the image visibility |
| 93 | func (il *ImageLabel) ImageVisible() bool { |
nothing calls this directly
no test coverage detected