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

Method back

lib/matplotlib/backend_bases.py:3021–3031  ·  view source on GitHub ↗

Move back up the view lim stack. 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

3019 self._update_view()
3020
3021 def back(self, *args):
3022 """
3023 Move back up the view lim stack.
3024
3025 For convenience of being directly connected as a GUI callback, which
3026 often get passed additional parameters, this method accepts arbitrary
3027 parameters, but does not use them.
3028 """
3029 self._nav_stack.back()
3030 self.set_history_buttons()
3031 self._update_view()
3032
3033 def forward(self, *args):
3034 """

Callers 3

test_toolbar_zoom_panFunction · 0.95
key_press_handlerFunction · 0.45
button_press_handlerFunction · 0.45

Calls 2

set_history_buttonsMethod · 0.95
_update_viewMethod · 0.95

Tested by 1

test_toolbar_zoom_panFunction · 0.76