mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2026-02-21 03:52:15 -07:00
FIX: the bed calibration default to unchecked
jira: [STUDIO-10091] Change-Id: I313cc8419276ca89e9d9cb57604adc19d2cfee89 (cherry picked from commit 655373cb825773a73d8d44553da8b9624a5d3dac)
This commit is contained in:
parent
8723b6987d
commit
eb6cd70f9a
1 changed files with 6 additions and 0 deletions
|
|
@ -53,6 +53,12 @@ CalibrationDialog::CalibrationDialog(Plater *plater)
|
|||
select_nozzle_cali = create_check_option(_L("Nozzle offset calibration"), cali_left_panel, _L("Nozzle offset calibration"), "nozzle_cali");
|
||||
select_heatbed_cali = create_check_option(_L("High-temperature Heatbed Calibration"), cali_left_panel, _L("High-temperature Heatbed Calibration"), "bed_cali");
|
||||
|
||||
// STUDIO-10091 the default not checked option
|
||||
if(m_checkbox_list.count("bed_cali") != 0)
|
||||
{
|
||||
m_checkbox_list["bed_cali"]->SetValue(false);
|
||||
}
|
||||
|
||||
cali_left_sizer->Add(0, FromDIP(18), 0, wxEXPAND, 0);
|
||||
cali_left_sizer->Add(select_xcam_cali, 0, wxLEFT, FromDIP(15));
|
||||
cali_left_sizer->Add(select_bed_leveling, 0, wxLEFT, FromDIP(15));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue