Correct binding to the escape key

This commit is contained in:
Dave Pearson
2022-10-19 20:10:08 +01:00
parent 3fcb00da81
commit 41bf93abf4

View File

@@ -18,7 +18,7 @@ class Help(Screen):
"""The help screen for the application."""
#: Bindings for the help screen.
BINDINGS = [("esc,space,q,h,question_mark", "app.pop_screen", "Close")]
BINDINGS = [("escape,space,q,h,question_mark", "app.pop_screen", "Close")]
def compose(self) -> ComposeResult:
"""Compose the game's help."""