Internal event handler to clear the buttons.
(self, event)
| 1166 | raise NotImplementedError("This method should be defined in subclasses") |
| 1167 | |
| 1168 | def _clear(self, event): |
| 1169 | """Internal event handler to clear the buttons.""" |
| 1170 | if self.ignore(event) or self.canvas.is_saving(): |
| 1171 | return |
| 1172 | if self._useblit and self.canvas.supports_blit: |
| 1173 | self._save_blit_background(self.canvas.copy_from_bbox(self.ax.bbox)) |
| 1174 | self.ax.draw_artist(self._buttons) |
| 1175 | |
| 1176 | def set_label_props(self, props): |
| 1177 | """ |
nothing calls this directly
no test coverage detected