Skip to content

Commit

Permalink
Align OptionList page key case to match ancestors
Browse files Browse the repository at this point in the history
  • Loading branch information
davep committed Dec 30, 2024
1 parent d34f4a4 commit a77ee4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/textual/widgets/_option_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,8 @@ class OptionList(ScrollView, can_focus=True):
Binding("end", "last", "Last", show=False),
Binding("enter", "select", "Select", show=False),
Binding("home", "first", "First", show=False),
Binding("pagedown", "page_down", "Page down", show=False),
Binding("pageup", "page_up", "Page up", show=False),
Binding("pagedown", "page_down", "Page Down", show=False),
Binding("pageup", "page_up", "Page Up", show=False),
Binding("up", "cursor_up", "Up", show=False),
]
"""
Expand Down

0 comments on commit a77ee4e

Please sign in to comment.