Skip to content

Commit

Permalink
Exit redial with CTRL+D
Browse files Browse the repository at this point in the history
  • Loading branch information
fatihbaltaci committed Oct 5, 2019
1 parent c78fbde commit 338229c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/redial/redial.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def on_key_press(self, key: str, w: UITreeWidget):

parent_node = None if w.get_node().get_parent() is None else w.get_node().get_parent().get_value()

if key in 'qQ':
if key in ['q', 'Q', 'ctrl d']:
self.command = EXIT_REDIAL
raise urwid.ExitMainLoop()

Expand Down

0 comments on commit 338229c

Please sign in to comment.