UI: Capitalize default filenames from "untitled" to "Untitled"

Capitalize the default filename used for .blend files and other savable
and exportable file formats (like images, 3D formats, etc.) from
"untitled" to "Untitled".

Pull Request: https://projects.blender.org/blender/blender/pulls/132424
This commit is contained in:
Jonas Holzman
2025-01-13 20:06:27 +01:00
committed by Harley Acheson
parent 5f24c61225
commit 0ee4ae89e4
5 changed files with 9 additions and 7 deletions

View File

@@ -64,7 +64,7 @@ class ExportHelper:
if not self.filepath:
blend_filepath = context.blend_data.filepath
if not blend_filepath:
blend_filepath = data_("untitled")
blend_filepath = data_("Untitled")
else:
blend_filepath = os.path.splitext(blend_filepath)[0]