(self)
| 761 | self.event_queue.insert(Event("resize", None)) |
| 762 | |
| 763 | def __hide_cursor(self): |
| 764 | if self.cursor_visible: |
| 765 | self.__maybe_write_code(self._civis) |
| 766 | self.cursor_visible = 0 |
| 767 | |
| 768 | def __show_cursor(self): |
| 769 | if not self.cursor_visible: |
no test coverage detected