Skip to content

Commit

Permalink
Merge pull request #5446 from davep/page-case
Browse files Browse the repository at this point in the history
Align `OptionList` page key case to match ancestors
  • Loading branch information
willmcgugan authored Jan 10, 2025
2 parents f66a143 + a77ee4e commit d373878
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 @@ -125,8 +125,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 d373878

Please sign in to comment.