talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit 7c26149b4d595af1c428a8e2a1c3623556a4b6ed
parent 1ad759a671ce5e856956aadb52ca32f2e2792177
Author: Olivier Brunel <jjk@jjacky.com>
Date:   Wed, 27 Dec 2017 21:53:17 +0100

action: Keep selection set afterwards

Upon running (filtering) actions, the current selection was lost (due to
refreshing the current folder); Let's restore it.

Diffstat:
Msrc/action.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/src/action.c b/src/action.c @@ -627,6 +627,7 @@ static void mainwin_actions_execute(MainWindow *mainwin, guint action_nb, msg_list = summary_get_selected_msg_list(mainwin->summaryview); message_actions_execute(mainwin->messageview, action_nb, msg_list); + summary_select_by_msg_list(mainwin->summaryview, msg_list); g_slist_free(msg_list); }