From 7744f5e479f896b92a34827d5d9fb2f95708f9bd Mon Sep 17 00:00:00 2001 From: "xun.zhang" Date: Thu, 21 Sep 2023 10:49:32 +0800 Subject: [PATCH] ENH: refine tl temp check logic and tip 1. refine warning tips jira:STUDIO-4532 Signed-off-by: xun.zhang Change-Id: Ida6f8a8a4fca5cf8cf04e622bd2f3af1baf82d52 --- src/libslic3r/PrintConfig.cpp | 4 ++-- src/slic3r/GUI/Plater.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index 2796a1871..c10be7897 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -1414,8 +1414,8 @@ void PrintConfigDef::init_fff_params() // BBS def = this->add("temperature_vitrification", coInts); - def->label = L("Temperature of vitrificaiton"); - def->tooltip = L("Material becomes soft at this temperature. Thus the heatbed cannot be hotter than this tempature"); + def->label = L("Glass transition temperature"); + def->tooltip = L("At this temperature,glass state transists to rubbery state. Thus the heatbed cannot be hotter than this temperature"); def->mode = comSimple; def->set_default_value(new ConfigOptionInts{ 100 }); diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index d36c07693..0945e676e 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -3006,7 +3006,7 @@ wxColour Plater::get_next_color_for_filament() wxString Plater::get_slice_warning_string(GCodeProcessorResult::SliceWarning& warning) { if (warning.msg == BED_TEMP_TOO_HIGH_THAN_FILAMENT) { - return _L("The bed temperature exceeds filament's vitrification temperature. Please open the front door of printer before printing to avoid nozzle clog."); + return _L("The current hot bed temperature is relatively high.The nozzle may be clogged when printing this filament in a closed enclosure."); } else if (warning.msg == NOZZLE_HRC_CHECKER) { return _L("The nozzle hardness required by the filament is higher than the default nozzle hardness of the printer. Please replace the hardened nozzle or filament, otherwise, the nozzle will be attrited or damaged."); } else if (warning.msg == NOT_SUPPORT_TRADITIONAL_TIMELAPSE) {