Browse Source

Update job name when pre-sliced flag changes

CURA-5246
Lipu Fei 7 years ago
parent
commit
83c728c89e
1 changed files with 1 additions and 0 deletions
  1. 1 0
      cura/PrintInformation.py

+ 1 - 0
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)