(self, event)
| 326 | guiEvent=event)._process() |
| 327 | |
| 328 | def mousePressEvent(self, event): |
| 329 | button = self.buttond.get(event.button()) |
| 330 | if button is not None and self.figure is not None: |
| 331 | MouseEvent("button_press_event", self, |
| 332 | *self.mouseEventCoords(event), button, |
| 333 | modifiers=self._mpl_modifiers(), |
| 334 | guiEvent=event)._process() |
| 335 | |
| 336 | def mouseDoubleClickEvent(self, event): |
| 337 | button = self.buttond.get(event.button()) |
nothing calls this directly
no test coverage detected