diff --git a/src/slic3r/GUI/SelectMachine.cpp b/src/slic3r/GUI/SelectMachine.cpp index 22b52bf8a..97829e3a2 100644 --- a/src/slic3r/GUI/SelectMachine.cpp +++ b/src/slic3r/GUI/SelectMachine.cpp @@ -616,10 +616,6 @@ SelectMachineDialog::SelectMachineDialog(Plater *plater) "use_ams" ); - option_use_ams->Bind(EVT_SWITCH_PRINT_OPTION, [this](auto& e) { - m_ams_mapping_result.clear();//clear and Scheduled call update_show_status - }); - option_use_ams->setValue("on"); m_sizer_options = new wxGridSizer(0, 2, FromDIP(5), FromDIP(40)); @@ -648,11 +644,6 @@ SelectMachineDialog::SelectMachineDialog(Plater *plater) for (auto print_opt : m_checkbox_list_order) { if (print_opt != option_use_ams) { print_opt->Bind(EVT_SWITCH_PRINT_OPTION, [this](auto &e) { save_option_vals();}); - } else{ - option_use_ams->Bind(EVT_SWITCH_PRINT_OPTION, [this](auto &e) { - m_ams_mapping_result.clear(); // clear and Scheduled call update_show_status - save_option_vals(); - }); } }