fix textfile navigation hotkeys (broke in 5d13ebb4)

This commit is contained in:
ed 2023-08-25 18:41:45 +00:00
parent 9fb9ada3aa
commit c9492d16ba

View file

@ -4623,7 +4623,11 @@ function tree_neigh(n) {
if (act >= links.length)
act = 0;
treectl.treego.call(links[act]);
if (showfile.active())
links[act].click();
else
treectl.treego.call(links[act]);
links[act].focus();
}