From 79edd48fbc5de361331d4569b5178f52980cd8f2 Mon Sep 17 00:00:00 2001 From: YuSanka Date: Tue, 20 Feb 2024 16:20:40 +0100 Subject: [PATCH] Fix for #4682 - When reloading a model that had manifold errors, warning triangle is still shown --- src/slic3r/GUI/Plater.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index 0a575591d8..de77b59629 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -2169,6 +2169,7 @@ bool Plater::priv::replace_volume_with_stl(int object_idx, int volume_idx, const // update new name in ObjectList sidebar->obj_list()->update_name_in_list(object_idx, volume_idx); + sidebar->obj_list()->update_item_error_icon(object_idx, volume_idx); sla::reproject_points_and_holes(old_model_object);