commit 94030d1aa5e132b50bb05a88245e3bca08c55ffa parent 8bd6066d2bc155562bb2464f4261ed35daf0b836 Author: Andrej Kacian <ticho@claws-mail.org> Date: Sat, 5 Nov 2016 11:09:59 +0100 Do not process folder marks when just refreshing summaryview. Diffstat:
| M | src/summaryview.c | | | 5 | +++-- |
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/src/summaryview.c b/src/summaryview.c @@ -1269,8 +1269,9 @@ gboolean summary_show(SummaryView *summaryview, FolderItem *item) } /* process the marks if any */ - if (summaryview->mainwin->lock_count == 0 && - (summaryview->moved > 0 || summaryview->copied > 0)) { + if (!is_refresh && + (summaryview->mainwin->lock_count == 0 && + (summaryview->moved > 0 || summaryview->copied > 0))) { AlertValue val; gboolean changed = FALSE;