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:
parent
b61da88d51
commit
89f7065d87
|
@ -1944,10 +1944,14 @@ void SelectMachineDialog::on_ok_btn(wxCommandEvent &event)
|
||||||
std::vector<wxString> confirm_text;
|
std::vector<wxString> confirm_text;
|
||||||
confirm_text.push_back(_L("Please check the following infomation and click Confirm to continue sending print:\n"));
|
confirm_text.push_back(_L("Please check the following infomation and click Confirm to continue sending print:\n"));
|
||||||
|
|
||||||
|
#if 0
|
||||||
//Check Printer Model Id
|
//Check Printer Model Id
|
||||||
bool is_same_printer_type = is_same_printer_model();
|
bool is_same_printer_type = is_same_printer_model();
|
||||||
if (!is_same_printer_type)
|
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"));
|
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
|
//Check slice warnings
|
||||||
bool has_slice_warnings = false;
|
bool has_slice_warnings = false;
|
||||||
|
|
Loading…
Reference in New Issue