mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-12 13:39:00 +08:00
Change default print job name to 'Untitled'
This is more common for documents that don't yet have a title in many applications.
This commit is contained in:
parent
aa03fabc57
commit
eac70dc06d
@ -300,7 +300,7 @@ class PrintInformation(QObject):
|
|||||||
|
|
||||||
def _updateJobName(self):
|
def _updateJobName(self):
|
||||||
if self._base_name == "":
|
if self._base_name == "":
|
||||||
self._job_name = "unnamed"
|
self._job_name = "Untitled"
|
||||||
self._is_user_specified_job_name = False
|
self._is_user_specified_job_name = False
|
||||||
self.jobNameChanged.emit()
|
self.jobNameChanged.emit()
|
||||||
return
|
return
|
||||||
|
@ -81,7 +81,7 @@ Item {
|
|||||||
text: PrintInformation.jobName
|
text: PrintInformation.jobName
|
||||||
horizontalAlignment: TextInput.AlignRight
|
horizontalAlignment: TextInput.AlignRight
|
||||||
onEditingFinished: {
|
onEditingFinished: {
|
||||||
var new_name = text == "" ? catalog.i18nc("@text Print job name", "unnamed") : text;
|
var new_name = text == "" ? catalog.i18nc("@text Print job name", "Untitled") : text;
|
||||||
PrintInformation.setJobName(new_name, true);
|
PrintInformation.setJobName(new_name, true);
|
||||||
printJobTextfield.focus = false;
|
printJobTextfield.focus = false;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user