From 6ad358a55db7dfc4825233a7e453bab31931fba0 Mon Sep 17 00:00:00 2001 From: Konstantinos Karmas Date: Mon, 23 Aug 2021 17:07:36 +0200 Subject: Set the job name whenever the workspaceLoaded is called CURA-8358 --- cura/UI/PrintInformation.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'cura/UI') diff --git a/cura/UI/PrintInformation.py b/cura/UI/PrintInformation.py index d6bd336558..852763cbfd 100644 --- a/cura/UI/PrintInformation.py +++ b/cura/UI/PrintInformation.py @@ -67,7 +67,7 @@ class PrintInformation(QObject): self._application.globalContainerStackChanged.connect(self._updateJobName) self._application.globalContainerStackChanged.connect(self.setToZeroPrintInformation) self._application.fileLoaded.connect(self.setBaseName) - self._application.workspaceLoaded.connect(self.setProjectName) + self._application.workspaceLoaded.connect(self._onWorkspaceLoaded) self._application.getMachineManager().rootMaterialChanged.connect(self._onActiveMaterialsChanged) self._application.getInstance().getPreferences().preferenceChanged.connect(self._onPreferencesChanged) @@ -439,3 +439,7 @@ class PrintInformation(QObject): """Listen to scene changes to check if we need to reset the print information""" self.setToZeroPrintInformation(self._active_build_plate) + + def _onWorkspaceLoaded(self, new_name: str) -> None: + """Update the job name whenever a new workspace is loaded.""" + self.setJobName(os.path.splitext(os.path.basename(new_name))[0]) -- cgit v1.2.3