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

Method home

lib/matplotlib/backend_bases.py:3009–3019  ·  view source on GitHub ↗

Restore the original view. For convenience of being directly connected as a GUI callback, which often get passed additional parameters, this method accepts arbitrary parameters, but does not use them.

(self, *args)

Source from the content-addressed store, hash-verified

3007 """Remove the rubberband."""
3008
3009 def home(self, *args):
3010 """
3011 Restore the original view.
3012
3013 For convenience of being directly connected as a GUI callback, which
3014 often get passed additional parameters, this method accepts arbitrary
3015 parameters, but does not use them.
3016 """
3017 self._nav_stack.home()
3018 self.set_history_buttons()
3019 self._update_view()
3020
3021 def back(self, *args):
3022 """

Callers 2

test_toolbar_zoom_panFunction · 0.95
key_press_handlerFunction · 0.45

Calls 2

set_history_buttonsMethod · 0.95
_update_viewMethod · 0.95

Tested by 1

test_toolbar_zoom_panFunction · 0.76