browser: correct the inverted search behavior for Alt+Up/Alt+Down

This should have been added and amended in the previous commit --
my mistake.
master
Benno Schulenberg 2017-08-20 09:22:19 +02:00
parent 633343de24
commit a56a881c4b
1 changed files with 3 additions and 3 deletions

View File

@ -173,12 +173,12 @@ char *do_browser(char *path)
} else if (func == do_search) {
do_filesearch();
} else if (func == do_research) {
do_fileresearch(FALSE);
do_fileresearch(TRUE);
#ifndef NANO_TINY
} else if (func == do_findprevious) {
do_fileresearch(TRUE);
} else if (func == do_findnext) {
do_fileresearch(FALSE);
} else if (func == do_findnext) {
do_fileresearch(TRUE);
#endif
} else if (func == do_left) {
if (selected > 0)