FIX: Supports automatic calibration of textured PEI
jira: 6504 Change-Id: I3234fb555b9bf0ea97e73387651874733e761ee7
This commit is contained in:
parent
188873202a
commit
5841dc041c
|
@ -1086,11 +1086,6 @@ void CalibrationPresetPage::update_plate_type_collection(CalibrationMethod metho
|
|||
const ConfigOptionDef* bed_type_def = print_config_def.get("curr_bed_type");
|
||||
if (bed_type_def && bed_type_def->enum_keys_map) {
|
||||
for (int i = 0; i < bed_type_def->enum_labels.size(); i++) {
|
||||
if(btDefault + 1 + i == btPTE) {
|
||||
if (method == CalibrationMethod::CALI_METHOD_AUTO) {
|
||||
continue;
|
||||
}
|
||||
}
|
||||
m_comboBox_bed_type->AppendString(_L(bed_type_def->enum_labels[i]));
|
||||
}
|
||||
m_comboBox_bed_type->SetSelection(0);
|
||||
|
|
|
@ -3332,12 +3332,7 @@ void SelectMachineDialog::update_flow_cali_check(MachineObject* obj)
|
|||
|
||||
if (obj && obj->get_printer_arch() == PrinterArch::ARCH_I3) { show_cali_tips = false; }
|
||||
|
||||
if (bed_type == BedType::btPTE) {
|
||||
set_flow_calibration_state(false, show_cali_tips);
|
||||
}
|
||||
else {
|
||||
set_flow_calibration_state(true, show_cali_tips);
|
||||
}
|
||||
set_flow_calibration_state(true, show_cali_tips);
|
||||
}
|
||||
|
||||
void SelectMachineDialog::update_ams_check(MachineObject* obj)
|
||||
|
@ -4228,7 +4223,6 @@ void SelectMachineDialog::set_default_from_sdcard()
|
|||
m_scrollable_view->SetMinSize(m_scrollable_region->GetSize());
|
||||
m_scrollable_view->SetMaxSize(m_scrollable_region->GetSize());
|
||||
|
||||
//auto bed_type = m_plater->get_partplate_list().get_curr_plate()->get_bed_type(true);
|
||||
set_flow_calibration_state(true);
|
||||
|
||||
wxSize screenSize = wxGetDisplaySize();
|
||||
|
|
Loading…
Reference in New Issue