From de4e087b5b714ea7d7a5e602d91c4fb0e4f6295e Mon Sep 17 00:00:00 2001 From: "salt.wei" Date: Mon, 6 Feb 2023 17:19:58 +0800 Subject: [PATCH] ENH: small change for warning Handling for jira-1966 Signed-off-by: salt.wei Change-Id: I4deb68fad55f373be86004f53e4b296da4b5b7db --- src/slic3r/GUI/Plater.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index 4c921565a..1307827a4 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -11174,7 +11174,8 @@ void Plater::post_process_string_object_exception(StringObjectException &err) break; } } - err.string = format(_L("Plate %d: %s does not support filament %s (%s)."), err.params[0], err.params[1], err.params[2], filament_name); + err.string = format(_L("Plate% d: %s is not suggested to be used to print filament %s(%s). If you still want to do this printing, please set this filament's bed temperature to non zero."), + err.params[0], err.params[1], err.params[2], filament_name); err.string += "\n"; } } catch (...) {