mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-24 23:23:57 -06:00
Setting an empty printjob name no longer causes a single prefix to be added.
CURA-3387
This commit is contained in:
parent
033c08d3ff
commit
9ceda261b7
1 changed files with 2 additions and 0 deletions
|
@ -200,6 +200,8 @@ class PrintInformation(QObject):
|
|||
|
||||
@pyqtSlot(str, result = str)
|
||||
def createJobName(self, base_name):
|
||||
if base_name == "":
|
||||
return ""
|
||||
base_name = self._stripAccents(base_name)
|
||||
self._setAbbreviatedMachineName()
|
||||
if self._pre_sliced:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue