clear the cursor
(self, event)
| 1274 | self.needclear = False |
| 1275 | |
| 1276 | def clear(self, event): |
| 1277 | """clear the cursor""" |
| 1278 | if self.ignore(event): |
| 1279 | return |
| 1280 | if self.useblit: |
| 1281 | self.background = self.canvas.copy_from_bbox(self.ax.bbox) |
| 1282 | self.linev.set_visible(False) |
| 1283 | self.lineh.set_visible(False) |
| 1284 | |
| 1285 | def onmove(self, event): |
| 1286 | """on mouse motion draw the cursor if visible""" |
nothing calls this directly
no test coverage detected