Replace label Skirt with Skirt/Brim in preview legend

This commit is contained in:
enricoturri1966 2021-04-27 10:46:42 +02:00
parent da702ab135
commit 2c6472ebc3
2 changed files with 3 additions and 3 deletions

View file

@ -318,7 +318,7 @@ std::string ExtrusionEntity::role_to_string(ExtrusionRole role)
case erIroning : return L("Ironing"); 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/Brim");
case erSupportMaterial : return L("Support material"); case erSupportMaterial : return L("Support material");
case erSupportMaterialInterface : return L("Support material interface"); case erSupportMaterialInterface : return L("Support material interface");
case erWipeTower : return L("Wipe tower"); case erWipeTower : return L("Wipe tower");
@ -349,7 +349,7 @@ ExtrusionRole ExtrusionEntity::string_to_role(const std::string_view role)
return erBridgeInfill; return erBridgeInfill;
else if (role == L("Gap fill")) else if (role == L("Gap fill"))
return erGapFill; return erGapFill;
else if (role == L("Skirt")) else if (role == L("Skirt/Brim"))
return erSkirt; return erSkirt;
else if (role == L("Support material")) else if (role == L("Support material"))
return erSupportMaterial; return erSupportMaterial;

View file

@ -235,7 +235,7 @@ bool Preview::init(wxWindow* parent, Model* model)
_L("Ironing") + "|1|" + _L("Ironing") + "|1|" +
_L("Bridge infill") + "|1|" + _L("Bridge infill") + "|1|" +
_L("Gap fill") + "|1|" + _L("Gap fill") + "|1|" +
_L("Skirt") + "|1|" + _L("Skirt/Brim") + "|1|" +
_L("Support material") + "|1|" + _L("Support material") + "|1|" +
_L("Support material interface") + "|1|" + _L("Support material interface") + "|1|" +
_L("Wipe tower") + "|1|" + _L("Wipe tower") + "|1|" +