(self, event)
| 317 | guiEvent=event)._process() |
| 318 | |
| 319 | def leaveEvent(self, event): |
| 320 | QtWidgets.QApplication.restoreOverrideCursor() |
| 321 | if self.figure is None: |
| 322 | return |
| 323 | LocationEvent("figure_leave_event", self, |
| 324 | *self.mouseEventCoords(), |
| 325 | modifiers=self._mpl_modifiers(), |
| 326 | guiEvent=event)._process() |
| 327 | |
| 328 | def mousePressEvent(self, event): |
| 329 | button = self.buttond.get(event.button()) |
nothing calls this directly
no test coverage detected