diff options
author | Benjamin Poirier <bpoirier@suse.de> | 2012-07-24 16:12:03 -0400 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2012-07-26 06:20:46 -0400 |
commit | d68e818bc4d5c962093ced51c4d8341fc6aea30d (patch) | |
tree | 735b0f62d5371aed53935984fd00f74c0ae5171b /scripts/kconfig/nconf.gui.c | |
parent | 9d4792c9b4e9cab75e657cec0c140875472d16f0 (diff) |
nconf: add u, d command keys in scroll windows
They function just like they do in less(1).
Also correct some discrepancy between the help text and the code wrt
function keys.
Signed-off-by: Benjamin Poirier <bpoirier@suse.de>
Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'scripts/kconfig/nconf.gui.c')
-rw-r--r-- | scripts/kconfig/nconf.gui.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/scripts/kconfig/nconf.gui.c b/scripts/kconfig/nconf.gui.c index 3b18dd839668..379003c7a2b4 100644 --- a/scripts/kconfig/nconf.gui.c +++ b/scripts/kconfig/nconf.gui.c | |||
@@ -604,9 +604,11 @@ void show_scroll_win(WINDOW *main_window, | |||
604 | switch (res) { | 604 | switch (res) { |
605 | case KEY_NPAGE: | 605 | case KEY_NPAGE: |
606 | case ' ': | 606 | case ' ': |
607 | case 'd': | ||
607 | start_y += text_lines-2; | 608 | start_y += text_lines-2; |
608 | break; | 609 | break; |
609 | case KEY_PPAGE: | 610 | case KEY_PPAGE: |
611 | case 'u': | ||
610 | start_y -= text_lines+2; | 612 | start_y -= text_lines+2; |
611 | break; | 613 | break; |
612 | case KEY_HOME: | 614 | case KEY_HOME: |
@@ -632,10 +634,10 @@ void show_scroll_win(WINDOW *main_window, | |||
632 | start_x++; | 634 | start_x++; |
633 | break; | 635 | break; |
634 | } | 636 | } |
635 | if (res == 10 || res == 27 || res == 'q' | 637 | if (res == 10 || res == 27 || res == 'q' || |
636 | || res == KEY_F(F_BACK) || res == KEY_F(F_EXIT)) { | 638 | res == KEY_F(F_HELP) || res == KEY_F(F_BACK) || |
639 | res == KEY_F(F_EXIT)) | ||
637 | break; | 640 | break; |
638 | } | ||
639 | if (start_y < 0) | 641 | if (start_y < 0) |
640 | start_y = 0; | 642 | start_y = 0; |
641 | if (start_y >= total_lines-text_lines) | 643 | if (start_y >= total_lines-text_lines) |