Scroll vertical scrollbars up, horizontal scrollbars left.
(self)
| 341 | self.post_message(ScrollDown() if self.vertical else ScrollRight()) |
| 342 | |
| 343 | def action_scroll_up(self) -> None: |
| 344 | """Scroll vertical scrollbars up, horizontal scrollbars left.""" |
| 345 | if not self.grabbed: |
| 346 | self.post_message(ScrollUp() if self.vertical else ScrollLeft()) |
| 347 | |
| 348 | def action_grab(self) -> None: |
| 349 | """Begin capturing the mouse cursor.""" |
nothing calls this directly
no test coverage detected