From: Chris Allegretta Date: Sun, 6 May 2001 03:02:21 +0000 (+0000) Subject: Fix not being able to select last item in browser with mouse X-Git-Tag: v1.1.0~59 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=f3fde7c2fcbf395df9f7076b654752d855fc6629;p=nano.git 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 --- diff --git a/files.c b/files.c index 28fd5bbd..3b4c5adb 100644 --- a/files.c +++ b/files.c @@ -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 */