Disconnect events.
(self)
| 2248 | ] |
| 2249 | |
| 2250 | def disconnect(self): |
| 2251 | """Disconnect events.""" |
| 2252 | for canvas, info in self._canvas_infos.items(): |
| 2253 | for cid in info["cids"]: |
| 2254 | canvas.mpl_disconnect(cid) |
| 2255 | info["cids"].clear() |
| 2256 | |
| 2257 | def clear(self, event): |
| 2258 | """Clear the cursor.""" |
nothing calls this directly
no test coverage detected