update libslic3r

This commit is contained in:
QIDI TECH
2025-02-26 20:06:22 +08:00
parent 7d213ce20c
commit d32f03deb8
29 changed files with 241 additions and 100 deletions

View File

@@ -621,6 +621,7 @@ std::string ExtrusionEntity::role_to_string(ExtrusionRole role)
case erWipeTower : return L("Prime tower");
case erCustom : return L("Custom");
case erMixed : return L("Multiple");
case erFlush : return L("Flush");
default : assert(false);
}
return "";
@@ -664,6 +665,8 @@ ExtrusionRole ExtrusionEntity::string_to_role(const std::string_view role)
return erCustom;
else if (role == L("Multiple"))
return erMixed;
else if (role == L("Flush"))
return erFlush;
else
return erNone;
}