From 626c424a026ce3169d9f59abe7fc5a8b7b544107 Mon Sep 17 00:00:00 2001 From: Diego Prado Gesto Date: Fri, 20 Apr 2018 15:00:40 +0200 Subject: [PATCH] CURA-5246 Just update the job name when it must be updated. --- cura/PrintInformation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/PrintInformation.py b/cura/PrintInformation.py index 1d66916b52..7c17987807 100644 --- a/cura/PrintInformation.py +++ b/cura/PrintInformation.py @@ -337,7 +337,7 @@ class PrintInformation(QObject): if is_gcode or is_project_file or (is_empty or (self._base_name == "" and self._base_name != name)): # Only take the file name part self._base_name = filename_parts[0] - self._updateJobName() + self._updateJobName() @pyqtProperty(str, fset = setBaseName, notify = baseNameChanged) def baseName(self):