(self, event)
| 342 | guiEvent=event)._process() |
| 343 | |
| 344 | def mouseMoveEvent(self, event): |
| 345 | if self.figure is None: |
| 346 | return |
| 347 | MouseEvent("motion_notify_event", self, |
| 348 | *self.mouseEventCoords(event), |
| 349 | buttons=self._mpl_buttons(event.buttons()), |
| 350 | modifiers=self._mpl_modifiers(), |
| 351 | guiEvent=event)._process() |
| 352 | |
| 353 | def mouseReleaseEvent(self, event): |
| 354 | button = self.buttond.get(event.button()) |
nothing calls this directly
no test coverage detected