From ed9a7da17e42971a0a10ee7d58459714173d2f1c Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Wed, 28 Sep 2016 11:39:52 +0200 Subject: [PATCH] Ensure that name abbreviation is correctly set when creating jobname CURA-2469 --- cura/PrintInformation.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cura/PrintInformation.py b/cura/PrintInformation.py index 096170ba22..e992b14e06 100644 --- a/cura/PrintInformation.py +++ b/cura/PrintInformation.py @@ -121,6 +121,7 @@ class PrintInformation(QObject): @pyqtSlot(str, result = str) def createJobName(self, base_name): base_name = self._stripAccents(base_name) + self._setAbbreviatedMachineName() if Preferences.getInstance().getValue("cura/jobname_prefix"): return self._abbr_machine + "_" + base_name else: