fix 5x5 quit

This commit is contained in:
Will McGugan
2024-06-07 17:26:48 +01:00
parent 8f36c3e727
commit bca829b1b6

View File

@@ -160,7 +160,7 @@ class Game(Screen):
BINDINGS = [
Binding("n", "new_game", "New Game"),
Binding("question_mark", "app.push_screen('help')", "Help", key_display="?"),
Binding("q", "quit", "Quit"),
Binding("q", "app.quit", "Quit"),
Binding("up,w,k", "navigate(-1,0)", "Move Up", False),
Binding("down,s,j", "navigate(1,0)", "Move Down", False),
Binding("left,a,h", "navigate(0,-1)", "Move Left", False),