From 89f7065d87a7532d0b0ca1658f9b42c3468613c1 Mon Sep 17 00:00:00 2001 From: Stone Li Date: Sat, 10 Dec 2022 21:29:26 +0800 Subject: [PATCH] ENH: do not check same physical printer with printer preset Change-Id: Idfcc80816828c2a65cbdfb12785598df92006a76 Signed-off-by: Stone Li --- src/slic3r/GUI/SelectMachine.cpp | 4 ++++ 1 file changed, 4 insertions(+) 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;