mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-20 05:07:51 -06:00
FIX: fix a bug of calibration
Change-Id: I1ef30271c42f0468fd00fb5b6ca49abe1b647cd6 Signed-off-by: Stone Li <stone.li@bambulab.com>
This commit is contained in:
parent
94c4ef6105
commit
80e4578921
8 changed files with 42 additions and 50 deletions
|
@ -1112,7 +1112,7 @@ bool CalibrationPresetPage::need_check_sdcard(MachineObject* obj)
|
|||
if (!obj) return false;
|
||||
|
||||
bool need_check = false;
|
||||
if (obj->printer_type == "BL-P001" || obj->printer_type == "BL-P002") {
|
||||
if (obj->get_printer_series() == PrinterSeries::SERIES_X1) {
|
||||
if (m_cali_mode == CalibMode::Calib_Flow_Rate && m_cali_method == CalibrationMethod::CALI_METHOD_MANUAL) {
|
||||
need_check = true;
|
||||
}
|
||||
|
@ -1121,7 +1121,7 @@ bool CalibrationPresetPage::need_check_sdcard(MachineObject* obj)
|
|||
need_check = true;
|
||||
}
|
||||
}
|
||||
else if (obj->printer_type == "C11" || obj->printer_type == "C12") {
|
||||
else if (obj->get_printer_series() == PrinterSeries::SERIES_P1P) {
|
||||
if (m_cali_mode == CalibMode::Calib_Flow_Rate && m_cali_method == CalibrationMethod::CALI_METHOD_MANUAL) {
|
||||
need_check = true;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue