Commit afe29b90 authored by Bram Schoenmakers's avatar Bram Schoenmakers

Return the key result of the parent widget, fixes : to enter command mode

Thanks to @mruwek for investigating.
parent 44811b80
...@@ -116,7 +116,7 @@ class TodoListWidget(urwid.LineBox): ...@@ -116,7 +116,7 @@ class TodoListWidget(urwid.LineBox):
elif p_key == 'g': elif p_key == 'g':
self.keystate = 'g' self.keystate = 'g'
else: else:
self.listbox.keypress(p_size, p_key) return self.listbox.keypress(p_size, p_key)
def selectable(self): def selectable(self):
return True return True
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment