Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Jani <m.jani@ultimaker.com>2020-03-10 12:59:33 +0300
committerMatt Jani <m.jani@ultimaker.com>2020-03-10 12:59:33 +0300
commit3887814660839c79da8d3ac94a541d9ac353a27c (patch)
tree68684067dda3c244f160510357c798e6b8e741ea /plugins/CuraEngineBackend/CuraEngineBackend.py
parent7b0964abef50c9e595f16683a5354524bb27ecb6 (diff)
Update the nothing to slice message
The message didn't list all the cases that it could pop up. CURA-7277
Diffstat (limited to 'plugins/CuraEngineBackend/CuraEngineBackend.py')
-rwxr-xr-xplugins/CuraEngineBackend/CuraEngineBackend.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins/CuraEngineBackend/CuraEngineBackend.py b/plugins/CuraEngineBackend/CuraEngineBackend.py
index 247936bf77..24f3cb29a0 100755
--- a/plugins/CuraEngineBackend/CuraEngineBackend.py
+++ b/plugins/CuraEngineBackend/CuraEngineBackend.py
@@ -421,7 +421,10 @@ class CuraEngineBackend(QObject, Backend):
if job.getResult() == StartJobResult.NothingToSlice:
if self._application.platformActivity:
- self._error_message = Message(catalog.i18nc("@info:status", "Nothing to slice because none of the models fit the build volume or are assigned to a disabled extruder. Please scale or rotate models to fit, or enable an extruder."),
+ self._error_message = Message(catalog.i18nc("@info:status", "Please review settings and check if your models:"
+ "\n- Fit within the build volume"
+ "\n- Are assigned to an enabled extruder"
+ "\nr- Are not all set as modifier meshes"),
title = catalog.i18nc("@info:title", "Unable to slice"))
self._error_message.show()
self.setState(BackendState.Error)