Show msg for both invert and select all

This commit is contained in:
Arun Prakash Jana 2021-07-15 11:45:32 +05:30
parent 9526fb7612
commit 064f5ea998
No known key found for this signature in database
GPG Key ID: A75979F35C080412
1 changed files with 5 additions and 5 deletions

View File

@ -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);