Skip to content

Commit 1ef199d

Browse files
authored
Merge pull request #5440 from davep/fix-scroll-left-description
Fix the description for the left arrow key in ScrollableContainer
2 parents 60748cb + f9e27c3 commit 1ef199d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/textual/containers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class ScrollableContainer(Widget, can_focus=True, inherit_bindings=False):
4848
BINDINGS: ClassVar[list[BindingType]] = [
4949
Binding("up", "scroll_up", "Scroll Up", show=False),
5050
Binding("down", "scroll_down", "Scroll Down", show=False),
51-
Binding("left", "scroll_left", "Scroll Up", show=False),
51+
Binding("left", "scroll_left", "Scroll Left", show=False),
5252
Binding("right", "scroll_right", "Scroll Right", show=False),
5353
Binding("home", "scroll_home", "Scroll Home", show=False),
5454
Binding("end", "scroll_end", "Scroll End", show=False),

0 commit comments

Comments
 (0)