MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / onmove

Method onmove

lib/matplotlib/widgets.py:2518–2524  ·  view source on GitHub ↗

Cursor move event handler and validator.

(self, event)

Source from the content-addressed store, hash-verified

2516
2517 @_call_with_reparented_event
2518 def onmove(self, event):
2519 """Cursor move event handler and validator."""
2520 if not self.ignore(event) and self._eventpress:
2521 event = self._clean_event(event)
2522 self._onmove(event)
2523 return True
2524 return False
2525
2526 def _onmove(self, event):
2527 """Cursor move event handler."""

Callers

nothing calls this directly

Calls 3

ignoreMethod · 0.95
_clean_eventMethod · 0.95
_onmoveMethod · 0.95

Tested by

no test coverage detected