From 96f8dab853413a526f818aa3bf22d8a509d2c8af Mon Sep 17 00:00:00 2001 From: Tim Kuipers Date: Thu, 31 Oct 2019 11:43:26 +0100 Subject: [PATCH] dont prepend 'Pre-sliced file' --- cura/UI/PrintInformation.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/cura/UI/PrintInformation.py b/cura/UI/PrintInformation.py index abf1083836..e33ab13b69 100644 --- a/cura/UI/PrintInformation.py +++ b/cura/UI/PrintInformation.py @@ -298,9 +298,7 @@ class PrintInformation(QObject): # Only update the job name when it's not user-specified. if not self._is_user_specified_job_name: - if self._pre_sliced: - self._job_name = catalog.i18nc("@label", "Pre-sliced file {0}", base_name) - elif self._application.getInstance().getPreferences().getValue("cura/jobname_prefix"): + if self._application.getInstance().getPreferences().getValue("cura/jobname_prefix") and not self._pre_sliced: # Don't add abbreviation if it already has the exact same abbreviation. if base_name.startswith(self._abbr_machine + "_"): self._job_name = base_name