Skip to content

Commit

Permalink
Full stops in tooltips
Browse files Browse the repository at this point in the history
  • Loading branch information
darrenburns committed Oct 12, 2024
1 parent 8b4f84b commit ecfe35f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/posting/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,23 +152,23 @@ class MainScreen(Screen[None]):
"ctrl+n",
"new_request",
"New",
tooltip="Create a new request",
tooltip="Create a new request.",
id="new-request",
),
Binding(
"ctrl+m",
"toggle_expanded",
"Expand section",
show=False,
tooltip="Expand or shrink the section (request or response) which has focus",
tooltip="Expand or shrink the section (request or response) which has focus.",
id="expand-section",
),
Binding(
"ctrl+h",
"toggle_collection_browser",
"Toggle collection browser",
show=False,
tooltip="Toggle the collection browser",
tooltip="Toggle the collection browser.",
id="toggle-collection",
),
]
Expand Down Expand Up @@ -803,7 +803,7 @@ class Posting(App[None], inherit_bindings=False):
tooltip="Open the help dialog for the currently focused widget.",
id="help",
),
Binding("f8", "save_screenshot", "Save screenshot", show=False),
Binding("f8", "save_screenshot", "Save screenshot.", show=False),
]

def __init__(
Expand Down

0 comments on commit ecfe35f

Please sign in to comment.