diff options
author | Jeremy Kerr <jk@ozlabs.org> | 2013-10-11 15:16:39 +0800 |
---|---|---|
committer | Jeremy Kerr <jk@ozlabs.org> | 2013-10-11 15:16:39 +0800 |
commit | bf8d7e61a8fbc19be5ea1a73b9eaa30e58453d1f (patch) | |
tree | 4be76c47ef059485db563f76e0b0c8d31f6e9934 /ui/ncurses/nc-cui.c | |
parent | 03d135e3d7528184062cc16949febd76c393c30d (diff) | |
download | talos-petitboot-bf8d7e61a8fbc19be5ea1a73b9eaa30e58453d1f.tar.gz talos-petitboot-bf8d7e61a8fbc19be5ea1a73b9eaa30e58453d1f.zip |
ui/ncurses: Use 'x' as exit key
Because terminals will send escape-sequences starting with escape,
ncurses will pause after receiving a signle escape, to detect
these sequences. This introduces a 1-second delay when exiting the
petitboot UI.
Instead, use 'x'.
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'ui/ncurses/nc-cui.c')
-rw-r--r-- | ui/ncurses/nc-cui.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/ncurses/nc-cui.c b/ui/ncurses/nc-cui.c index 33a9f73..da97fd9 100644 --- a/ui/ncurses/nc-cui.c +++ b/ui/ncurses/nc-cui.c @@ -65,7 +65,7 @@ void cui_resize(struct cui *cui) } /** - * cui_on_exit - A generic main menu ESC callback. + * cui_on_exit - A generic main menu exit callback. */ void cui_on_exit(struct pmenu *menu) |