From 0d656621bfaf0591b91e6dee72ceb68ef883bf62 Mon Sep 17 00:00:00 2001 From: "lane.wei" Date: Fri, 26 May 2023 20:59:10 +0800 Subject: [PATCH] FIX: fix the printable state not correct issue after auto-arrange github issue 1858 Change-Id: Ica32c527b30d75f0e3019a633387168bd9d1c5ee --- src/slic3r/GUI/GUI_ObjectList.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/slic3r/GUI/GUI_ObjectList.cpp b/src/slic3r/GUI/GUI_ObjectList.cpp index d45c468a9..33aab8eaa 100644 --- a/src/slic3r/GUI/GUI_ObjectList.cpp +++ b/src/slic3r/GUI/GUI_ObjectList.cpp @@ -5617,10 +5617,10 @@ void ObjectList::reload_all_plates(bool notify_partplate) m_prevent_canvas_selection_update = false; - // update printable states on canvas - wxGetApp().plater()->get_view3D_canvas3D()->update_instance_printable_state_for_objects(obj_idxs); // update scene wxGetApp().plater()->update(); + // update printable states on canvas + wxGetApp().plater()->get_view3D_canvas3D()->update_instance_printable_state_for_objects(obj_idxs); } void ObjectList::on_plate_selected(int plate_index)