Skip to content

Commit ebcb804

Browse files
authored
🔀 Merge pull request #131 from davep/tidy-search-input
Tidy the typing around the search input dialog
2 parents c06a842 + 5f5cbbc commit ebcb804

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/braindrop/app/screens/search_input.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010

1111
##############################################################################
12-
class SearchInput(ModalScreen[str]):
12+
class SearchInput(ModalScreen[str | None]):
1313
"""A modal screen to get search text from the user."""
1414

1515
CSS = """
@@ -38,7 +38,7 @@ def search(self) -> None:
3838

3939
def action_escape(self) -> None:
4040
"""Escape out without searching."""
41-
self.app.pop_screen()
41+
self.dismiss(None)
4242

4343

4444
### search_input.py ends here

0 commit comments

Comments
 (0)