diff --git a/resources/profiles/QIDITechnology.ini b/resources/profiles/QIDITechnology.ini index fa02266..874f07c 100644 --- a/resources/profiles/QIDITechnology.ini +++ b/resources/profiles/QIDITechnology.ini @@ -419,7 +419,7 @@ filament_colour = #696969 filament_density = 1.09 filament_max_volumetric_speed = 14 filament_property_drying_box = 15 -filament_property_anneal_temperature = 90 +filament_property_anneal_temperature = 80 filament_property_corrosion_resistance = fine filament_property_hdt_045 = 149.6 filament_property_hdt_180 = 112.4 @@ -447,7 +447,7 @@ filament_colour = #4F4F4F filament_density = 1.20 filament_max_volumetric_speed = 15 filament_property_drying_box = 15 -filament_property_anneal_temperature = 90 +filament_property_anneal_temperature = 80 filament_property_water_resistance = fine filament_property_corrosion_resistance = strong filament_property_creep_resistance = strong @@ -477,7 +477,7 @@ filament_colour = #323232 filament_density = 1.30 filament_max_volumetric_speed = 14 filament_property_drying_box = 15 -filament_property_anneal_temperature = 90 +filament_property_anneal_temperature = 80 filament_property_water_resistance = strong filament_property_corrosion_resistance = strong filament_property_creep_resistance = strong diff --git a/src/slic3r/GUI/PresetHints.cpp b/src/slic3r/GUI/PresetHints.cpp index 248d112..c07226b 100644 --- a/src/slic3r/GUI/PresetHints.cpp +++ b/src/slic3r/GUI/PresetHints.cpp @@ -342,7 +342,7 @@ std::string PresetHints::anneal_temperature_description(const Preset &preset) else { int filament_property_anneal_temperature = preset.config.option("filament_property_anneal_temperature")->get_at(0); int filament_property_anneal_temperature_max = filament_property_anneal_temperature + 20; - out += GUI::format(_L("Annealing the model immediately after printing can further improve the mechanical properties of %1%.\n" + out += GUI::format(_L("Annealing the model immediately after printing can further improve the physical properties of %1%.\n" "Put the model in a drying oven and set it at %2%-%3% °C for 4-6 hours."), filament_type, filament_property_anneal_temperature, filament_property_anneal_temperature_max); }