From e5efbbc2c29ac2333590d85d1d15845417b5f8bb Mon Sep 17 00:00:00 2001 From: enricoturri1966 Date: Fri, 24 Feb 2023 09:10:29 +0100 Subject: [PATCH] Follow-up of 5d38d3363c1b9496fec7f73d25873211357d769f - Completed fix of synchronization of instances/volumes after resetting scale --- src/slic3r/GUI/GUI_ObjectManipulation.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/slic3r/GUI/GUI_ObjectManipulation.cpp b/src/slic3r/GUI/GUI_ObjectManipulation.cpp index 531b2a8ce1..69280f7c76 100644 --- a/src/slic3r/GUI/GUI_ObjectManipulation.cpp +++ b/src/slic3r/GUI/GUI_ObjectManipulation.cpp @@ -490,6 +490,7 @@ ObjectManipulation::ObjectManipulation(wxWindow* parent) : #if ENABLE_WORLD_COORDINATE GLCanvas3D* canvas = wxGetApp().plater()->canvas3D(); Selection& selection = canvas->get_selection(); + selection.setup_cache(); if (selection.is_single_volume_or_modifier()) { GLVolume* vol = const_cast(selection.get_first_volume()); Geometry::Transformation trafo = vol->get_volume_transformation();