commit 265d0a7dd9797ee1966ac5552a0426b47e1ac20c
parent a8f5ca94d3365f4e0ff02dffdbffc20104bb0a73
Author: Paul <paul@claws-mail.org>
Date: Thu, 17 Aug 2023 10:36:34 +0100
use the statusbar to show that expunge is happening
patch by Tim Mann
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/src/imap.c b/src/imap.c
@@ -4560,7 +4560,9 @@ static gint imap_cmd_expunge(IMAPSession *session)
return -1;
}
+ statusbar_print_all(_("Expunging deleted messages..."));
r = imap_threaded_expunge(session->folder);
+ statusbar_pop_all();
if (r != MAILIMAP_NO_ERROR) {
imap_handle_error(SESSION(session), NULL, r);
return r;