Mouse has entered the window.
(self, event)
| 846 | guiEvent=event)._process() |
| 847 | |
| 848 | def _on_enter(self, event): |
| 849 | """Mouse has entered the window.""" |
| 850 | event.Skip() |
| 851 | LocationEvent("figure_enter_event", self, |
| 852 | *self._mpl_coords(event), |
| 853 | modifiers=self._mpl_modifiers(), |
| 854 | guiEvent=event)._process() |
| 855 | |
| 856 | def _on_leave(self, event): |
| 857 | """Mouse has left the window.""" |
nothing calls this directly
no test coverage detected