mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-09 15:57:52 -06:00
Ensure that name abbreviation is correctly set when creating jobname
CURA-2469
This commit is contained in:
parent
fe41098f1f
commit
ed9a7da17e
1 changed files with 1 additions and 0 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue