From b99a67ceb5d86c01f407886ec320a7888b227add Mon Sep 17 00:00:00 2001 From: Arjen Hiemstra Date: Thu, 10 Sep 2015 16:18:29 +0200 Subject: [PATCH] Display a more appropriate message when processing layers Contributes to CURA-132 --- plugins/CuraEngineBackend/ProcessSlicedObjectListJob.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/CuraEngineBackend/ProcessSlicedObjectListJob.py b/plugins/CuraEngineBackend/ProcessSlicedObjectListJob.py index 2e2303863f..b150222489 100644 --- a/plugins/CuraEngineBackend/ProcessSlicedObjectListJob.py +++ b/plugins/CuraEngineBackend/ProcessSlicedObjectListJob.py @@ -27,7 +27,7 @@ class ProcessSlicedObjectListJob(Job): def run(self): if Application.getInstance().getController().getActiveView().getPluginId() == "LayerView": - self._progress = Message(catalog.i18nc("@info", "Layers"), 0, False, 0) + self._progress = Message(catalog.i18nc("@info:status", "Processing Layers"), 0, False, 0) self._progress.show() Application.getInstance().getController().activeViewChanged.connect(self._onActiveViewChanged) @@ -108,7 +108,7 @@ class ProcessSlicedObjectListJob(Job): if self.isRunning(): if Application.getInstance().getController().getActiveView().getPluginId() == "LayerView": if not self._progress: - self._progress = Message(catalog.i18nc("Layers View mode", "Layers"), 0, False, 0) + self._progress = Message(catalog.i18nc("@info:status", "Processing Layers"), 0, False, 0) self._progress.show() else: if self._progress: