mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2026-03-02 08:15:08 -07:00
FIX:remove the fault description of "Use AMS"
jira: [STUDIO-9236] Change-Id: Ibcfe7460a2ea5e530e807446362c67af8cc61fa8 (cherry picked from commit 71cf4c68dc21f8ca8c08c6a7137f9a1522202f18)
This commit is contained in:
parent
9a07c98405
commit
24ee292ea0
1 changed files with 2 additions and 2 deletions
|
|
@ -599,7 +599,7 @@ SelectMachineDialog::SelectMachineDialog(Plater *plater)
|
||||||
auto option_use_ams = new PrintOption(
|
auto option_use_ams = new PrintOption(
|
||||||
m_options_other,
|
m_options_other,
|
||||||
_L("Use AMS"),
|
_L("Use AMS"),
|
||||||
_L("Calibrate nozzle offsets to enhance print quality.\n*Automatic mode: Check for calibration before printing; skip if unnecessary."),
|
wxEmptyString,
|
||||||
ops_no_auto
|
ops_no_auto
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
@ -610,10 +610,10 @@ SelectMachineDialog::SelectMachineDialog(Plater *plater)
|
||||||
|
|
||||||
option_use_ams->setValue("off");
|
option_use_ams->setValue("off");
|
||||||
m_sizer_options_timelapse->Add(option_timelapse, 0, wxEXPAND | wxTOP | wxBOTTOM, FromDIP(5));
|
m_sizer_options_timelapse->Add(option_timelapse, 0, wxEXPAND | wxTOP | wxBOTTOM, FromDIP(5));
|
||||||
|
m_sizer_options_other->Add(option_use_ams, 0, wxEXPAND | wxTOP | wxBOTTOM, FromDIP(5));
|
||||||
m_sizer_options_other->Add(option_auto_bed_level, 0, wxEXPAND | wxTOP | wxBOTTOM, FromDIP(5));
|
m_sizer_options_other->Add(option_auto_bed_level, 0, wxEXPAND | wxTOP | wxBOTTOM, FromDIP(5));
|
||||||
m_sizer_options_other->Add(option_flow_dynamics_cali, 0, wxEXPAND | wxTOP | wxBOTTOM, FromDIP(5));
|
m_sizer_options_other->Add(option_flow_dynamics_cali, 0, wxEXPAND | wxTOP | wxBOTTOM, FromDIP(5));
|
||||||
m_sizer_options_other->Add(option_nozzle_offset_cali_cali, 0, wxEXPAND | wxTOP | wxBOTTOM, FromDIP(5));
|
m_sizer_options_other->Add(option_nozzle_offset_cali_cali, 0, wxEXPAND | wxTOP | wxBOTTOM, FromDIP(5));
|
||||||
m_sizer_options_other->Add(option_use_ams, 0, wxEXPAND | wxTOP | wxBOTTOM, FromDIP(5));
|
|
||||||
|
|
||||||
m_options_other->SetSizer(m_sizer_options_other);
|
m_options_other->SetSizer(m_sizer_options_other);
|
||||||
m_options_other->Layout();
|
m_options_other->Layout();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue