mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-17 02:22:17 +00:00
fix typo and tweak precise_outer_wall message
This commit is contained in:
@@ -1602,7 +1602,7 @@ StringObjectException Print::validate(StringObjectException *warning, Polygons*
|
||||
|
||||
// check wall sequence and precise outer wall
|
||||
if (m_default_region_config.precise_outer_wall && m_default_region_config.wall_sequence != WallSequence::InnerOuter) {
|
||||
warning->string = L("Precise outer wall will be ignored when wall sequence is InnerOuter.");
|
||||
warning->string = L("The precise wall option will be ignored for outer-inner or inner-outer-inner wall sequences.");
|
||||
warning->opt_key = "precise_outer_wall";
|
||||
}
|
||||
|
||||
|
||||
@@ -1085,9 +1085,10 @@ void PrintConfigDef::init_fff_params()
|
||||
def = this->add("precise_outer_wall",coBool);
|
||||
def->label = L("Precise wall");
|
||||
def->category = L("Quality");
|
||||
def->tooltip = L("Improve shell precision by adjusting outer wall spacing. This also improves layer consistency. NOTE: This option will be ignored unless the wall sequence is InnerOuter.");
|
||||
def->tooltip = L("Improve shell precision by adjusting outer wall spacing. This also improves layer consistency. NOTE: This option "
|
||||
"will be ignored for outer-inner or inner-outer-inner wall sequences.");
|
||||
def->set_default_value(new ConfigOptionBool{true});
|
||||
|
||||
|
||||
def = this->add("only_one_wall_top", coBool);
|
||||
def->label = L("Only one wall on top surfaces");
|
||||
def->category = L("Quality");
|
||||
|
||||
Reference in New Issue
Block a user