diff --git a/src/slic3r/GUI/SelectMachine.cpp b/src/slic3r/GUI/SelectMachine.cpp index c57170a58..c01e6121a 100644 --- a/src/slic3r/GUI/SelectMachine.cpp +++ b/src/slic3r/GUI/SelectMachine.cpp @@ -1944,10 +1944,14 @@ void SelectMachineDialog::on_ok_btn(wxCommandEvent &event) std::vector confirm_text; confirm_text.push_back(_L("Please check the following infomation and click Confirm to continue sending print:\n")); +#if 0 //Check Printer Model Id bool is_same_printer_type = is_same_printer_model(); if (!is_same_printer_type) confirm_text.push_back(_L("The printer type used to generate G-code is not the same type as the currently selected physical printer. It is recommend to re-slice by selecting the same printer type.\n")); +#else + bool is_same_printer_type = true; +#endif //Check slice warnings bool has_slice_warnings = false;