mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-20 13:17:54 -06:00
FIX: Manual flowcalibration reports invalid k value
Github: 2589 Change-Id: I7870ca89f9c92168c37d2d40e9a3820eb8f24b1b
This commit is contained in:
parent
47d65de12e
commit
9639f77bab
1 changed files with 6 additions and 6 deletions
|
@ -1541,13 +1541,13 @@ void CalibrationPresetPage::set_cali_method(CalibrationMethod method)
|
||||||
extruder_type = ExtruderType(printer_preset->config.opt_enum("extruder_type", 0));
|
extruder_type = ExtruderType(printer_preset->config.opt_enum("extruder_type", 0));
|
||||||
}
|
}
|
||||||
if (extruder_type == ExtruderType::etBowden) {
|
if (extruder_type == ExtruderType::etBowden) {
|
||||||
values.push_back(_L("0"));
|
values.push_back(wxString::Format(wxT("%.0f"), 0));
|
||||||
values.push_back(_L("0.5"));
|
values.push_back(wxString::Format(wxT("%.1f"), 0.5));
|
||||||
values.push_back(_L("0.05"));
|
values.push_back(wxString::Format(wxT("%.2f"), 0.05));
|
||||||
} else {
|
} else {
|
||||||
values.push_back(_L("0"));
|
values.push_back(wxString::Format(wxT("%.0f"), 0));
|
||||||
values.push_back(_L("0.05"));
|
values.push_back(wxString::Format(wxT("%.2f"), 0.05));
|
||||||
values.push_back(_L("0.005"));
|
values.push_back(wxString::Format(wxT("%.3f"), 0.005));
|
||||||
}
|
}
|
||||||
m_custom_range_panel->set_values(values);
|
m_custom_range_panel->set_values(values);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue