mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-18 19:12:17 +00:00
FIX: fix a bug of calibration
Change-Id: I1ef30271c42f0468fd00fb5b6ca49abe1b647cd6 Signed-off-by: Stone Li <stone.li@bambulab.com>
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user