From 83c728c89e9abb739163346b477bf3cf21f5fa9e Mon Sep 17 00:00:00 2001 From: Lipu Fei Date: Wed, 18 Apr 2018 10:24:55 +0200 Subject: [PATCH] Update job name when pre-sliced flag changes CURA-5246 --- cura/PrintInformation.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cura/PrintInformation.py b/cura/PrintInformation.py index 6d73489448..d0e9e43e3f 100644 --- a/cura/PrintInformation.py +++ b/cura/PrintInformation.py @@ -138,6 +138,7 @@ class PrintInformation(QObject): def setPreSliced(self, pre_sliced): self._pre_sliced = pre_sliced + self._updateJobName() self.preSlicedChanged.emit() @pyqtProperty(Duration, notify = currentPrintTimeChanged)