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-d3aeb78583b8master
parent
5f07180e8a
commit
f3fde7c2fc
2
files.c
2
files.c
|
@ -1214,7 +1214,7 @@ char *do_browser(char *inpath)
|
||||||
|
|
||||||
/* If we're off the screen, reset to the last item.
|
/* If we're off the screen, reset to the last item.
|
||||||
If we clicked where we did last time, select this name! */
|
If we clicked where we did last time, select this name! */
|
||||||
if (selected >= numents - 1)
|
if (selected > numents - 1)
|
||||||
selected = numents - 1;
|
selected = numents - 1;
|
||||||
else if (selectedbackup == selected) {
|
else if (selectedbackup == selected) {
|
||||||
ungetch('s'); /* Unget the 'select' key */
|
ungetch('s'); /* Unget the 'select' key */
|
||||||
|
|
Loading…
Reference in New Issue