Set the visibility of the selector artists.
(self, visible)
| 2576 | """Key release event handler.""" |
| 2577 | |
| 2578 | def set_visible(self, visible): |
| 2579 | """Set the visibility of the selector artists.""" |
| 2580 | self._visible = visible |
| 2581 | for artist in self.artists: |
| 2582 | artist.set_visible(visible) |
| 2583 | |
| 2584 | def get_visible(self): |
| 2585 | """Get the visibility of the selector artists.""" |
no test coverage detected