Skip to content

Commit ec4e6af

Browse files
committed
Add descriptions for bindings in RadioSet
1 parent c75b169 commit ec4e6af

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/textual/widgets/_radio_set.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ class RadioSet(Container, can_focus=True, can_focus_children=False):
6262
"""
6363

6464
BINDINGS: ClassVar[list[BindingType]] = [
65-
Binding("down,right", "next_button", "", show=False),
65+
Binding("down,right", "next_button", "Next option", show=False),
6666
Binding("enter,space", "toggle_button", "Toggle", show=False),
67-
Binding("up,left", "previous_button", "", show=False),
67+
Binding("up,left", "previous_button", "Previous option", show=False),
6868
]
6969
"""
7070
| Key(s) | Description |

0 commit comments

Comments
 (0)