ImageVisible returns the image visibility
()
| 91 | |
| 92 | // ImageVisible returns the image visibility |
| 93 | func (il *ImageLabel) ImageVisible() bool { |
| 94 | |
| 95 | if il.image == nil { |
| 96 | return false |
| 97 | } |
| 98 | return il.image.Visible() |
| 99 | } |
| 100 | |
| 101 | // SetImage sets the image label image |
| 102 | func (il *ImageLabel) SetImage(img *Image) { |