(self, visible: bool)
| 380 | self.posxy = x, y |
| 381 | |
| 382 | def set_cursor_vis(self, visible: bool) -> None: |
| 383 | if visible: |
| 384 | self._show_cursor() |
| 385 | else: |
| 386 | self._hide_cursor() |
| 387 | |
| 388 | def getheightwidth(self) -> tuple[int, int]: |
| 389 | """Return (height, width) where height and width are the height |
nothing calls this directly
no test coverage detected