diff --git a/resources/profiles/BBL/filament/Generic PPS-CF @base.json b/resources/profiles/BBL/filament/Generic PPS-CF @base.json index d15d6eba9a..887d276e2d 100644 --- a/resources/profiles/BBL/filament/Generic PPS-CF @base.json +++ b/resources/profiles/BBL/filament/Generic PPS-CF @base.json @@ -14,6 +14,9 @@ "filament_max_volumetric_speed": [ "3" ], + "filament_type": [ + "PPS-CF" + ], "nozzle_temperature_range_high": [ "350" ], diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index e92254cc12..dc51f5db16 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -1357,6 +1357,8 @@ void PrintConfigDef::init_fff_params() def->enum_values.push_back("PVA"); def->enum_values.push_back("HIPS"); def->enum_values.push_back("PLA-AERO"); + def->enum_values.push_back("PPS"); + def->enum_values.push_back("PPS-CF"); def->mode = comSimple; def->set_default_value(new ConfigOptionStrings { "PLA" });