From a759df62c49137796280e578ef3b8bda0b2229dd Mon Sep 17 00:00:00 2001 From: "lane.wei" Date: Mon, 30 Jan 2023 19:53:13 +0800 Subject: [PATCH] FIX: fix the model outside issue after repair a negative-z found and needs to notify plate after ensure_on_bed Change-Id: Ifc0eb277a16437333036aeef19020471e3ea91db --- src/slic3r/GUI/GUI_ObjectList.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/slic3r/GUI/GUI_ObjectList.cpp b/src/slic3r/GUI/GUI_ObjectList.cpp index b6e2fb730..49418a3bd 100644 --- a/src/slic3r/GUI/GUI_ObjectList.cpp +++ b/src/slic3r/GUI/GUI_ObjectList.cpp @@ -4711,6 +4711,7 @@ void ObjectList::fix_through_netfabb() plater->changed_mesh(obj_idx); + object(obj_idx)->ensure_on_bed(); plater->get_partplate_list().notify_instance_update(obj_idx, 0); plater->sidebar().obj_list()->update_plate_values_for_items(); @@ -4722,8 +4723,6 @@ void ObjectList::fix_through_netfabb() update_item_error_icon(obj_idx, vol_idx); update_info_items(obj_idx); - object(obj_idx)->ensure_on_bed(); - return true; };