diff --git a/gertty/app.py b/gertty/app.py index 66f4d56..e4d0285 100644 --- a/gertty/app.py +++ b/gertty/app.py @@ -223,7 +223,7 @@ class App(object): def unhandledInput(self, key): if key == 'esc': self.backScreen() - elif key == 'f1': + elif key == 'f1' or key == '?': self.help() elif key == 'ctrl q': self.quit() diff --git a/gertty/mywid.py b/gertty/mywid.py index aee227b..ea6cf4d 100644 --- a/gertty/mywid.py +++ b/gertty/mywid.py @@ -17,9 +17,9 @@ import urwid GLOBAL_HELP = """\ Global Keys =========== - Help - Back to previous screen - Quit Gertty + or Help + Back to previous screen + Quit Gertty """ class TextButton(urwid.Button):