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:
authorMikhail Rachinskiy <mikhail.rachinskiy@gmail.com>2020-07-15 04:53:53 +0300
committerMikhail Rachinskiy <mikhail.rachinskiy@gmail.com>2020-07-15 04:53:53 +0300
commit44bd5400357ff8dc2baa30dc2d1836196f900c1a (patch)
tree7049b8418255de54744dc82af88a502579086917 /io_mesh_ply/__init__.py
parentcb3f8ec4b1c46e3130c9fb8f20cc8e892442c941 (diff)
PLY Cleanup: redundant comments
Diffstat (limited to 'io_mesh_ply/__init__.py')
-rw-r--r--io_mesh_ply/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/io_mesh_ply/__init__.py b/io_mesh_ply/__init__.py
index 5e12bfce..79b8dc38 100644
--- a/io_mesh_ply/__init__.py
+++ b/io_mesh_ply/__init__.py
@@ -189,7 +189,7 @@ class PLY_PT_export_include(bpy.types.Panel):
def draw(self, context):
layout = self.layout
layout.use_property_split = True
- layout.use_property_decorate = False # No animation.
+ layout.use_property_decorate = False
sfile = context.space_data
operator = sfile.active_operator
@@ -213,7 +213,7 @@ class PLY_PT_export_transform(bpy.types.Panel):
def draw(self, context):
layout = self.layout
layout.use_property_split = True
- layout.use_property_decorate = False # No animation.
+ layout.use_property_decorate = False
sfile = context.space_data
operator = sfile.active_operator
@@ -239,7 +239,7 @@ class PLY_PT_export_geometry(bpy.types.Panel):
def draw(self, context):
layout = self.layout
layout.use_property_split = True
- layout.use_property_decorate = False # No animation.
+ layout.use_property_decorate = False
sfile = context.space_data
operator = sfile.active_operator