Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2013-02-07 08:25:53 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-02-07 08:25:53 +0400
commit9e11509b70067c0c24fec6f1c38e7c4b93ba7f06 (patch)
treef8540bde9c30863a530ad072ffed51060799155b /io_mesh_ply/__init__.py
parent05b77ae4f880355178641584939cfb87d6cc7638 (diff)
make option for applying modifiers consistent
Diffstat (limited to 'io_mesh_ply/__init__.py')
-rw-r--r--io_mesh_ply/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/io_mesh_ply/__init__.py b/io_mesh_ply/__init__.py
index 6672dae4..92b0bbdd 100644
--- a/io_mesh_ply/__init__.py
+++ b/io_mesh_ply/__init__.py
@@ -89,7 +89,7 @@ class ExportPLY(bpy.types.Operator, ExportHelper):
filename_ext = ".ply"
filter_glob = StringProperty(default="*.ply", options={'HIDDEN'})
- use_modifiers = BoolProperty(
+ use_mesh_modifiers = BoolProperty(
name="Apply Modifiers",
description="Apply Modifiers to the exported mesh",
default=True,
@@ -127,7 +127,7 @@ class ExportPLY(bpy.types.Operator, ExportHelper):
layout = self.layout
row = layout.row()
- row.prop(self, "use_modifiers")
+ row.prop(self, "use_mesh_modifiers")
row.prop(self, "use_normals")
row = layout.row()
row.prop(self, "use_uv_coords")