From 8214f92dc88f1885e36e5d91c3f13508e35ba101 Mon Sep 17 00:00:00 2001 From: "zhimin.zeng" Date: Thu, 17 Oct 2024 09:57:28 +0800 Subject: [PATCH] FIX: set wipe tower to default position when switch printer jira: 8468 Change-Id: I6ad489ed127635115c050a40329757afc568135d (cherry picked from commit c63351a165b334978a3f09bf95fe2c63056ec53a) --- src/slic3r/GUI/PartPlate.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/PartPlate.cpp b/src/slic3r/GUI/PartPlate.cpp index b747517bd..916b6075a 100644 --- a/src/slic3r/GUI/PartPlate.cpp +++ b/src/slic3r/GUI/PartPlate.cpp @@ -3916,7 +3916,7 @@ void PartPlateList::update_all_plates_pos_and_size(bool adjust_position, bool wi plate->set_pos_and_size(origin1, m_plate_width, m_plate_depth, m_plate_height, adjust_position, do_clear); // set default wipe pos when switch plate - if (switch_plate_type && m_plater && plate->get_used_extruders().size() <= 0) { + if (switch_plate_type && m_plater/* && plate->get_used_extruders().size() <= 0*/) { set_default_wipe_tower_pos_for_plate(i); } }