ENH: do not check same physical printer with printer preset

Change-Id: Idfcc80816828c2a65cbdfb12785598df92006a76
Signed-off-by: Stone Li <stone.li@bambulab.com>
This commit is contained in:
Stone Li 2022-12-10 21:29:26 +08:00 committed by Lane.Wei
parent b61da88d51
commit 89f7065d87

View file

@ -1944,10 +1944,14 @@ void SelectMachineDialog::on_ok_btn(wxCommandEvent &event)
std::vector<wxString> 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;