From 42e271d2d37b16e2077bc0f31ea9dcae996ec571 Mon Sep 17 00:00:00 2001 From: David Lawrence Ramsey Date: Wed, 15 Jun 2005 07:32:58 +0000 Subject: [PATCH] in do_browser(), make mouse clicks in the browser window work properly when the MORE_SPACE flag is set git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2672 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- ChangeLog | 2 ++ src/files.c | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 9235ed9b..6d5d1c54 100644 --- a/ChangeLog +++ b/ChangeLog @@ -128,6 +128,8 @@ CVS code - (DLR) - Rename variable selectedbackup to old_selected, for consistency. (DLR) + - Make mouse clicks in the browser window work properly when the + MORE_SPACE flag is set. (DLR) save_history() - Properly save history when in view mode. (DLR) - global.c: diff --git a/src/files.c b/src/files.c index 6e28b88c..9eec7888 100644 --- a/src/files.c +++ b/src/files.c @@ -2527,7 +2527,7 @@ char *do_browser(char *path, DIR *dir) if (wenclose(edit, mevent.y, mevent.x)) { int old_selected = selected; - mevent.y -= 2; + mevent.y -= 2 - no_more_space(); /* longest is the width of each column. There are * two spaces between each column. */