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)
| 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 | """ |