[Bf-extensions-cvs] [27d4fe68] master: Fix T75470: File overwrite warning for UV Layout export

Arvind R noreply at git.blender.org
Tue Apr 7 13:17:54 CEST 2020


Commit: 27d4fe6833531cec86d27032cfc24e3d510f1e8e
Author: Arvind R
Date:   Tue Apr 7 21:16:10 2020 +1000
Branches: master
https://developer.blender.org/rBA27d4fe6833531cec86d27032cfc24e3d510f1e8e

Fix T75470: File overwrite warning for UV Layout export

===================================================================

M	io_mesh_uv_layout/__init__.py

===================================================================

diff --git a/io_mesh_uv_layout/__init__.py b/io_mesh_uv_layout/__init__.py
index 21b68c65..d82f879c 100644
--- a/io_mesh_uv_layout/__init__.py
+++ b/io_mesh_uv_layout/__init__.py
@@ -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",



More information about the Bf-extensions-cvs mailing list