(self)
| 906 | return curses.getmouse() |
| 907 | |
| 908 | def _redraw_output(self): |
| 909 | if self._curr_unwrapped_output is not None: |
| 910 | self._display_nav_bar() |
| 911 | self._display_main_menu(self._curr_unwrapped_output) |
| 912 | self._display_output(self._curr_unwrapped_output, is_refresh=True) |
| 913 | |
| 914 | def _fetch_hyperlink_command(self, mouse_x, mouse_y): |
| 915 | output_top = self._output_top_row |
no test coverage detected