From b465bf9427c41bbc5d67dbdd27ed8a2617311b1d Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Tue, 19 May 2020 17:54:36 +0530 Subject: [PATCH] Fix regression from commit 2200a1c --- src/nnn.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/nnn.c b/src/nnn.c index bd461e70..c5a5e89b 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -2580,7 +2580,8 @@ static int filterentries(char *path, char *lastname) showfilter(ln); continue; #ifndef NOMOUSE - case KEY_MOUSE: // fallthrough + case KEY_MOUSE: + goto end; #endif case 27: /* Exit filter mode on Escape and Alt+key */ if (handle_alt_key(ch) != ERR) {