Fix not being able to select last item in browser with mouse

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@642 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
master
Chris Allegretta 2001-05-06 03:02:21 +00:00
parent 5f07180e8a
commit f3fde7c2fc
1 changed files with 1 additions and 1 deletions

View File

@ -1214,7 +1214,7 @@ char *do_browser(char *inpath)
/* If we're off the screen, reset to the last item.
If we clicked where we did last time, select this name! */
if (selected >= numents - 1)
if (selected > numents - 1)
selected = numents - 1;
else if (selectedbackup == selected) {
ungetch('s'); /* Unget the 'select' key */