mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-08-12 19:19:02 +08:00
Pull request #4235 - Fix tick/untick ironing feature in preview by rongith
This commit is contained in:
parent
f326352ceb
commit
2de442b617
@ -312,8 +312,8 @@ std::string ExtrusionEntity::role_to_string(ExtrusionRole role)
|
|||||||
case erOverhangPerimeter : return L("Overhang perimeter");
|
case erOverhangPerimeter : return L("Overhang perimeter");
|
||||||
case erInternalInfill : return L("Internal infill");
|
case erInternalInfill : return L("Internal infill");
|
||||||
case erSolidInfill : return L("Solid infill");
|
case erSolidInfill : return L("Solid infill");
|
||||||
case erIroning : return L("Ironing");
|
|
||||||
case erTopSolidInfill : return L("Top solid infill");
|
case erTopSolidInfill : return L("Top solid infill");
|
||||||
|
case erIroning : return L("Ironing");
|
||||||
case erBridgeInfill : return L("Bridge infill");
|
case erBridgeInfill : return L("Bridge infill");
|
||||||
case erGapFill : return L("Gap fill");
|
case erGapFill : return L("Gap fill");
|
||||||
case erSkirt : return L("Skirt");
|
case erSkirt : return L("Skirt");
|
||||||
|
@ -1122,7 +1122,7 @@ void PrintConfigDef::init_fff_params()
|
|||||||
|
|
||||||
def = this->add("ironing_spacing", coFloat);
|
def = this->add("ironing_spacing", coFloat);
|
||||||
def->label = L("Spacing between ironing passes");
|
def->label = L("Spacing between ironing passes");
|
||||||
def->tooltip = L("Distance between ironing lins");
|
def->tooltip = L("Distance between ironing lines");
|
||||||
def->sidetext = L("mm");
|
def->sidetext = L("mm");
|
||||||
def->min = 0;
|
def->min = 0;
|
||||||
def->mode = comExpert;
|
def->mode = comExpert;
|
||||||
|
@ -250,6 +250,7 @@ bool Preview::init(wxWindow* parent, Model* model)
|
|||||||
_(L("Internal infill")) + "|" +
|
_(L("Internal infill")) + "|" +
|
||||||
_(L("Solid infill")) + "|" +
|
_(L("Solid infill")) + "|" +
|
||||||
_(L("Top solid infill")) + "|" +
|
_(L("Top solid infill")) + "|" +
|
||||||
|
_(L("Ironing")) + "|" +
|
||||||
_(L("Bridge infill")) + "|" +
|
_(L("Bridge infill")) + "|" +
|
||||||
_(L("Gap fill")) + "|" +
|
_(L("Gap fill")) + "|" +
|
||||||
_(L("Skirt")) + "|" +
|
_(L("Skirt")) + "|" +
|
||||||
|
Loading…
x
Reference in New Issue
Block a user