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

Method forward

lib/matplotlib/backend_bases.py:3033–3043  ·  view source on GitHub ↗

Move forward in 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

3031 self._update_view()
3032
3033 def forward(self, *args):
3034 """
3035 Move forward in the view lim stack.
3036
3037 For convenience of being directly connected as a GUI callback, which
3038 often get passed additional parameters, this method accepts arbitrary
3039 parameters, but does not use them.
3040 """
3041 self._nav_stack.forward()
3042 self.set_history_buttons()
3043 self._update_view()
3044
3045 def _update_cursor(self, event):
3046 """

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