Skip to content

Commit

Permalink
Fix the description for the left arrow key in ScrollableContainer
Browse files Browse the repository at this point in the history
  • Loading branch information
davep committed Dec 27, 2024
1 parent d34f4a4 commit f9e27c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/textual/containers.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class ScrollableContainer(Widget, can_focus=True, inherit_bindings=False):
BINDINGS: ClassVar[list[BindingType]] = [
Binding("up", "scroll_up", "Scroll Up", show=False),
Binding("down", "scroll_down", "Scroll Down", show=False),
Binding("left", "scroll_left", "Scroll Up", show=False),
Binding("left", "scroll_left", "Scroll Left", show=False),
Binding("right", "scroll_right", "Scroll Right", show=False),
Binding("home", "scroll_home", "Scroll Home", show=False),
Binding("end", "scroll_end", "Scroll End", show=False),
Expand Down

0 comments on commit f9e27c3

Please sign in to comment.