This commit is contained in:
Arun Prakash Jana 2019-08-07 02:03:52 +05:30
parent d23c2997af
commit 8c2c7e9e97
No known key found for this signature in database
GPG Key ID: A75979F35C080412
1 changed files with 3 additions and 3 deletions

View File

@ -3465,13 +3465,13 @@ nochange:
}
/* Handle clicking on a file */
r = curscroll + (event.y - 2);
if (2 <= event.y && event.y < xlines - 2 && r < ndents) {
if (2 <= event.y && event.y <= ndents + 1) {
r = curscroll + (event.y - 2);
move_cursor(r, 1);
/*Single click just selects, double click also opens */
if (event.bstate != BUTTON1_DOUBLE_CLICKED)
goto nochange;
break;
} else {
if (cfg.filtermode)
presel = FILTER;