diff options
author | Geoff Levand <geoffrey.levand@am.sony.com> | 2009-08-26 15:41:40 -0700 |
---|---|---|
committer | Geoff Levand <geoffrey.levand@am.sony.com> | 2009-08-26 15:41:40 -0700 |
commit | 17d63c9bf4f302c1e6d0012beb26d18e64f33913 (patch) | |
tree | dd35dd14996a99c4c394e61ac89caf3e679be084 /ui | |
parent | d29c9620cd853d9ead31075f237f53b9e6301a52 (diff) | |
download | talos-petitboot-17d63c9bf4f302c1e6d0012beb26d18e64f33913.tar.gz talos-petitboot-17d63c9bf4f302c1e6d0012beb26d18e64f33913.zip |
cui: Remove tab hotkey
Remove the 'tab' hotkey that was used for kboot compatability.
Signed-off-by: Geoff Levand <geoffrey.levand@am.sony.com>
Diffstat (limited to 'ui')
-rw-r--r-- | ui/ncurses/nc-menu.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ui/ncurses/nc-menu.c b/ui/ncurses/nc-menu.c index f96eb82..7302c6d 100644 --- a/ui/ncurses/nc-menu.c +++ b/ui/ncurses/nc-menu.c @@ -232,7 +232,6 @@ static void pmenu_process_key(struct nc_scr *scr) pmenu_move_cursor(menu, REQ_UP_ITEM); break; case KEY_DOWN: - case '\t': pmenu_move_cursor(menu, REQ_DOWN_ITEM); break; case KEY_LEFT: |