Remove broken space keyboard binding for accept

Originally space was thought out to also accept the selection, but only
a broken binding was added. As we want to use space for selections in
the future we now remove it entirely.
This commit is contained in:
Sebastian Lohff 2020-08-05 02:34:36 +02:00
parent a28c76e001
commit 46a863b3cf
1 changed files with 0 additions and 1 deletions

View File

@ -264,7 +264,6 @@ class CliMenu:
@self._kb.add('c-m', filter=~is_searching)
@self._kb.add('right', filter=~is_searching)
@self._kb.add('c-space', filter=~is_searching)
def accept(event):
self._success = True
event.app.exit()