Skip to content

Commit d373878

Browse files
authored
Merge pull request #5446 from davep/page-case
Align `OptionList` page key case to match ancestors
2 parents f66a143 + a77ee4e commit d373878

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/textual/widgets/_option_list.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,8 @@ class OptionList(ScrollView, can_focus=True):
125125
Binding("end", "last", "Last", show=False),
126126
Binding("enter", "select", "Select", show=False),
127127
Binding("home", "first", "First", show=False),
128-
Binding("pagedown", "page_down", "Page down", show=False),
129-
Binding("pageup", "page_up", "Page up", show=False),
128+
Binding("pagedown", "page_down", "Page Down", show=False),
129+
Binding("pageup", "page_up", "Page Up", show=False),
130130
Binding("up", "cursor_up", "Up", show=False),
131131
]
132132
"""

0 commit comments

Comments
 (0)