FIX: filament loading steps

jira: [STUDIO-14428]
Change-Id: I68612346ef9cb50e302323daa47421c22a87be97
(cherry picked from commit 9fb4b9b6a3a16b08d9dc52a4d6dbc15044275dcf)
This commit is contained in:
xin.zhang
2025-09-05 11:14:34 +08:00
committed by Noisyfox
parent 21407e91de
commit 8863631c92
6 changed files with 151 additions and 130 deletions

View File

@@ -5386,9 +5386,9 @@ Slic3r::DevPrintingSpeedLevel MachineObject::GetPrintingSpeedLevel() const
return m_print_options->GetPrintingSpeedLevel();
}
bool MachineObject::is_ams_unload()
bool MachineObject::is_target_slot_unload() const
{
return m_extder_system->GetTargetAmsId().compare("255") == 0;
return m_extder_system->GetTargetSlotId().compare("255") == 0;
}
Slic3r::DevAms* MachineObject::get_curr_Ams()