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:
committed by
Harley Acheson
parent
5f24c61225
commit
0ee4ae89e4
@@ -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]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user