Fix T75470: File overwrite warning for UV Layout export

This commit is contained in:
Arvind R 2020-04-07 21:16:10 +10:00 committed by Campbell Barton
parent 93425213fa
commit 27d4fe6833
Notes: blender-bot 2023-02-13 22:56:57 +01:00
Referenced by issue blender/blender#75470, "export UV layout" doesn't warn if same name used.
1 changed files with 5 additions and 0 deletions

View File

@ -70,6 +70,11 @@ class ExportUVLayout(bpy.types.Operator):
description="Export all UVs in this mesh (not just visible ones)",
default=False,
)
check_existing = BoolProperty(
name="Check Existing",
default=True,
options={'HIDDEN'},
)
modified: BoolProperty(
name="Modified",
description="Exports UVs from the modified mesh",