Ticket #4408: incorrect redraw of overlapped file panels.

Revert "(panel_operate): update panel content before screen refresh."

This reverts commit 6623a9014fd66029503cdb544b720aae4662a047.

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
Andrew Borodin 2023-03-12 10:12:48 +03:00
parent 37ae744a50
commit 7e04a57b87

View File

@ -3537,10 +3537,11 @@ panel_operate (void *source_panel, FileOperation operation, gboolean force_singl
file_op_total_context_destroy (tctx);
ret_fast:
/* update panels before redraw screen in file_op_total_context_destroy() */
update_panels (UP_OPTIMIZE, UP_KEEPSEL);
file_op_context_destroy (ctx);
update_panels (UP_OPTIMIZE, UP_KEEPSEL);
repaint_screen ();
return ret_val;
}