Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVojtech Bubnik <bubnikv@gmail.com>2022-08-29 18:39:33 +0300
committerVojtech Bubnik <bubnikv@gmail.com>2022-08-29 18:39:33 +0300
commitc74f16d7c72418cb4126bc17e5c129c6c0220269 (patch)
tree45ba530aad1099a85da1372fab8199007259dd98
parentd53b0f8b3bd96fd0ba9a4ff63fd1edaef7199709 (diff)
Added filament type "PA" to the list of known filament types.
While we already had "NYLON" in the list, "PA" code is promoted by Prusa Filament company.
-rw-r--r--src/libslic3r/PrintConfig.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp
index 579f1aebb..2dfd85d4f 100644
--- a/src/libslic3r/PrintConfig.cpp
+++ b/src/libslic3r/PrintConfig.cpp
@@ -1042,6 +1042,7 @@ void PrintConfigDef::init_fff_params()
def->enum_values.push_back("HIPS");
def->enum_values.push_back("EDGE");
def->enum_values.push_back("NGEN");
+ def->enum_values.push_back("PA");
def->enum_values.push_back("NYLON");
def->enum_values.push_back("PVA");
def->enum_values.push_back("PC");