diff --git a/src/slic3r/GUI/AmsMappingPopup.cpp b/src/slic3r/GUI/AmsMappingPopup.cpp index 628b838b5..e67a06eeb 100644 --- a/src/slic3r/GUI/AmsMappingPopup.cpp +++ b/src/slic3r/GUI/AmsMappingPopup.cpp @@ -648,7 +648,7 @@ void AmsMapingPopup::update(MachineObject* obj) int ams_type = ams_iter->second->type; int nozzle_id = ams_iter->second->nozzle; - if (ams_type == 1) { + if (ams_type >=1 || ams_type <= 3) { //1:ams 2:ams-lite 3:n3f auto sizer_mapping_list = new wxBoxSizer(wxHORIZONTAL); auto ams_mapping_item_container = new MappingContainer(nozzle_id == 0? m_right_marea_panel:m_left_marea_panel); @@ -707,6 +707,8 @@ void AmsMapingPopup::update(MachineObject* obj) //m_warning_text->Show(m_has_unmatch_filament); } + else if(ams_type == 4){ //4:n3s + } } Layout();