From 3921adb3421ef745e32e933a47ecef7e7dd1f7c7 Mon Sep 17 00:00:00 2001 From: "qing.zhang" Date: Wed, 6 Nov 2024 18:14:32 +0800 Subject: [PATCH] ENH: update plate text and filament printable warning jira: none Signed-off-by: qing.zhang Change-Id: Id9ec632b6d663a5060e63bf151fc277411cced0a --- src/slic3r/GUI/GLCanvas3D.cpp | 2 +- src/slic3r/GUI/Tab.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/slic3r/GUI/GLCanvas3D.cpp b/src/slic3r/GUI/GLCanvas3D.cpp index 323db5a76..397adc588 100644 --- a/src/slic3r/GUI/GLCanvas3D.cpp +++ b/src/slic3r/GUI/GLCanvas3D.cpp @@ -9534,7 +9534,7 @@ void GLCanvas3D::_set_warning_notification(EWarning warning, bool state) warning += std::to_string(filament + 1); warning+=" "; } - text = (boost::format(_u8L("filaments %s cannot be printed directly on the surface of %s")) % warning % m_gcode_viewer.filament_printable_reuslt.plate_name).str(); + text = (boost::format(_u8L("filaments %s cannot be printed directly on the surface of this plate")) % warning ).str(); error = ErrorType::SLICING_ERROR; break; } diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp index 54194de4b..a4466b049 100644 --- a/src/slic3r/GUI/Tab.cpp +++ b/src/slic3r/GUI/Tab.cpp @@ -3040,7 +3040,7 @@ void TabFilament::build() line.append_option(optgroup->get_option("supertack_plate_temp")); optgroup->append_line(line); - line = { L("Cool Plate / PLA Plate"), L("Bed temperature when cool plate is installed. Value 0 means the filament does not support to print on the Cool Plate") }; + line = { L("Cool Plate"), L("Bed temperature when cool plate is installed. Value 0 means the filament does not support to print on the Cool Plate") }; line.append_option(optgroup->get_option("cool_plate_temp_initial_layer")); line.append_option(optgroup->get_option("cool_plate_temp")); optgroup->append_line(line);