Pause the cursor blinking but ensure it stays visible.
(self, visible: bool = True)
| 1940 | self.blink_timer.reset() |
| 1941 | |
| 1942 | def _pause_blink(self, visible: bool = True) -> None: |
| 1943 | """Pause the cursor blinking but ensure it stays visible.""" |
| 1944 | self._cursor_visible = visible |
| 1945 | if self.is_mounted: |
| 1946 | self.blink_timer.pause() |
| 1947 | |
| 1948 | async def _on_mouse_down(self, event: events.MouseDown) -> None: |
| 1949 | """Update the cursor position, and begin a selection using the mouse.""" |
no test coverage detected