(self)
| 780 | self.event_queue.insert(Event("resize", None)) |
| 781 | |
| 782 | def __hide_cursor(self): |
| 783 | if self.cursor_visible: |
| 784 | self.__maybe_write_code(self._civis) |
| 785 | self.cursor_visible = 0 |
| 786 | |
| 787 | def __show_cursor(self): |
| 788 | if not self.cursor_visible: |
no test coverage detected