Mouse has left the window.
(self, event)
| 854 | guiEvent=event)._process() |
| 855 | |
| 856 | def _on_leave(self, event): |
| 857 | """Mouse has left the window.""" |
| 858 | event.Skip() |
| 859 | LocationEvent("figure_leave_event", self, |
| 860 | *self._mpl_coords(event), |
| 861 | modifiers=self._mpl_modifiers(), |
| 862 | guiEvent=event)._process() |
| 863 | |
| 864 | |
| 865 | class FigureCanvasWx(_FigureCanvasWxBase): |
nothing calls this directly
no test coverage detected