diff --git a/src/textual/widget.py b/src/textual/widget.py index f28d99b988..293b977838 100644 --- a/src/textual/widget.py +++ b/src/textual/widget.py @@ -1675,12 +1675,11 @@ def _scroll_left_for_pointer( """Scroll left one position, taking scroll sensitivity into account. Args: - animate: Animate scroll. Defaults to True. - speed: Speed of scroll if animate is True. Or None to use duration. - duration: Duration of animation, if animate is True and speed is None. - easing: An easing method for the scrolling animation. Defaults to "None", - which will result in Textual choosing the configured default scrolling easing function. - force: Force scrolling even when prohibited by overflow styling. Defaults to `False`. + animate: Animate scroll. + speed: Speed of scroll if `animate` is `True`; or `None` to use `duration`. + duration: Duration of animation, if `animate` is `True` and `speed` is `None`. + easing: An easing method for the scrolling animation. + force: Force scrolling even when prohibited by overflow styling. Returns: True if any scrolling was done.