Skip to content

Commit

Permalink
fix(tools): fix widget documentation helper script (#5002)
Browse files Browse the repository at this point in the history
  • Loading branch information
TomJGooding authored Sep 16, 2024
1 parent fe91255 commit 5279624
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/textual/widgets/_select.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
from rich.text import Text

from textual import events, on
from textual.binding import Binding
from textual.containers import Horizontal, Vertical
from textual.css.query import NoMatches
from textual.message import Message
Expand Down Expand Up @@ -198,7 +199,9 @@ class Select(Generic[SelectType], Vertical, can_focus=True):
BLANK = BLANK
"""Constant to flag that the widget has no selection."""

BINDINGS = [("enter,down,space,up", "show_overlay")]
BINDINGS = [
Binding("enter,down,space,up", "show_overlay", show=False),
]
"""
| Key(s) | Description |
| :- | :- |
Expand Down

0 comments on commit 5279624

Please sign in to comment.