diff --git a/src/nnn.c b/src/nnn.c index a38d9e32..50200422 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -1569,11 +1569,6 @@ static void invertselbuf(char *path) selmark *marked = malloc(nselected * sizeof(selmark)); bool scan = FALSE; - if (nselected > LARGESEL) { - printmsg("processing..."); - refresh(); - } - /* First pass: inversion */ for (int i = 0; i < ndents; ++i) { dentp = &pdents[i]; @@ -7084,6 +7079,11 @@ nochange: scanselforpath(path); } + if ((nselected > LARGESEL) || (nselected && (ndents > LARGESEL))) { + printmsg("processing..."); + refresh(); + } + ((sel == SEL_SELINV) && findselpos) ? invertselbuf(path) : addtoselbuf(path, selstartid, selendid);