hints kitten: Document how to choose the empty hint for multi key hints

This commit is contained in:
Kovid Goyal
2022-01-15 15:17:30 +05:30
parent 06ff685f8e
commit b32edf54f8
2 changed files with 7 additions and 1 deletions

View File

@@ -186,7 +186,7 @@ class Hints(Handler):
self.current_input = self.current_input[:-1]
self.current_text = None
self.draw_screen()
elif key_event.matches('enter') and self.current_input:
elif (key_event.matches('enter') or key_event.matches('space')) and self.current_input:
try:
idx = decode_hint(self.current_input, self.alphabet)
self.chosen.append(self.index_map[idx])