mirror of
https://git.mirrors.martin98.com/https://github.com/bambulab/BambuStudio.git
synced 2025-08-06 00:16:18 +08:00
FIX: Manual flowcalibration reports invalid k value
Github: 2589 Change-Id: I7870ca89f9c92168c37d2d40e9a3820eb8f24b1b
This commit is contained in:
parent
d3db1f2537
commit
5eb9770f2f
@ -1541,13 +1541,13 @@ void CalibrationPresetPage::set_cali_method(CalibrationMethod method)
|
||||
extruder_type = ExtruderType(printer_preset->config.opt_enum("extruder_type", 0));
|
||||
}
|
||||
if (extruder_type == ExtruderType::etBowden) {
|
||||
values.push_back(_L("0"));
|
||||
values.push_back(_L("0.5"));
|
||||
values.push_back(_L("0.05"));
|
||||
values.push_back(wxString::Format(wxT("%.0f"), 0));
|
||||
values.push_back(wxString::Format(wxT("%.1f"), 0.5));
|
||||
values.push_back(wxString::Format(wxT("%.2f"), 0.05));
|
||||
} else {
|
||||
values.push_back(_L("0"));
|
||||
values.push_back(_L("0.05"));
|
||||
values.push_back(_L("0.005"));
|
||||
values.push_back(wxString::Format(wxT("%.0f"), 0));
|
||||
values.push_back(wxString::Format(wxT("%.2f"), 0.05));
|
||||
values.push_back(wxString::Format(wxT("%.3f"), 0.005));
|
||||
}
|
||||
m_custom_range_panel->set_values(values);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user