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
parent
633343de24
commit
a56a881c4b
|
@ -173,12 +173,12 @@ char *do_browser(char *path)
|
||||||
} else if (func == do_search) {
|
} else if (func == do_search) {
|
||||||
do_filesearch();
|
do_filesearch();
|
||||||
} else if (func == do_research) {
|
} else if (func == do_research) {
|
||||||
do_fileresearch(FALSE);
|
do_fileresearch(TRUE);
|
||||||
#ifndef NANO_TINY
|
#ifndef NANO_TINY
|
||||||
} else if (func == do_findprevious) {
|
} else if (func == do_findprevious) {
|
||||||
do_fileresearch(TRUE);
|
|
||||||
} else if (func == do_findnext) {
|
|
||||||
do_fileresearch(FALSE);
|
do_fileresearch(FALSE);
|
||||||
|
} else if (func == do_findnext) {
|
||||||
|
do_fileresearch(TRUE);
|
||||||
#endif
|
#endif
|
||||||
} else if (func == do_left) {
|
} else if (func == do_left) {
|
||||||
if (selected > 0)
|
if (selected > 0)
|
||||||
|
|
Loading…
Reference in New Issue