Commit a56a881c authored by Benno Schulenberg's avatar Benno Schulenberg
Browse files

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

This should have been added and amended in the previous commit --
my mistake.
No related merge requests found
Showing with 3 additions and 3 deletions
+3 -3
......@@ -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)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment