diff options
| author | 2020-05-19 17:54:36 +0530 | |
|---|---|---|
| committer | 2020-05-19 17:54:36 +0530 | |
| commit | b465bf9427c41bbc5d67dbdd27ed8a2617311b1d (patch) | |
| tree | 05466f86c3ff68c5ea85f7e0d8bb39993035d548 | |
| parent | 709b2f229e7e5310aeb01aa48834e936aa738ef2 (diff) | |
| download | nnn-b465bf9427c41bbc5d67dbdd27ed8a2617311b1d.tar.gz | |
Fix regression from commit 2200a1c
| -rw-r--r-- | src/nnn.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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) { |