From e5d795cc0b31b6818e048812c35f3a810e1b1ea5 Mon Sep 17 00:00:00 2001 From: Lipu Fei Date: Mon, 16 Apr 2018 17:21:09 +0200 Subject: [PATCH] Update model checker text CURA-5237 --- plugins/ModelChecker/ModelChecker.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/plugins/ModelChecker/ModelChecker.py b/plugins/ModelChecker/ModelChecker.py index f1e2b5d3e9..c7d36e9916 100644 --- a/plugins/ModelChecker/ModelChecker.py +++ b/plugins/ModelChecker/ModelChecker.py @@ -63,11 +63,11 @@ class ModelChecker(QObject, Extension): self._caution_message.setText(catalog.i18nc( "@info:status", - "Some models may not be printed optimally due to object size and chosen material for models: {model_names}.\n" - "Tips that may be useful to improve the print quality:\n" - "1) Use rounded corners.\n" - "2) Turn the fan off (only if there are no tiny details on the model).\n" - "3) Use a different material.").format(model_names = ", ".join([n.getName() for n in warning_nodes]))) + "

One or more 3D models may not print optimally due to the model size and material configuration:

\n" + "

{model_names}

\n" + "

Find out how to ensure the best possible print quality and reliability.

\n" + "

View print quality guide

" + ).format(model_names = ", ".join([n.getName() for n in warning_nodes]))) return len(warning_nodes) > 0