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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'release/scripts/startup/bl_operators/uvcalc_follow_active.py')
-rw-r--r--release/scripts/startup/bl_operators/uvcalc_follow_active.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/release/scripts/startup/bl_operators/uvcalc_follow_active.py b/release/scripts/startup/bl_operators/uvcalc_follow_active.py
index 29cefd83328..7620b354a08 100644
--- a/release/scripts/startup/bl_operators/uvcalc_follow_active.py
+++ b/release/scripts/startup/bl_operators/uvcalc_follow_active.py
@@ -18,7 +18,7 @@
# <pep8 compliant>
-#for full docs see...
+# for full docs see...
# http://mediawiki.blender.org/index.php/Scripts/Manual/UV_Calculate/Follow_active_quads
import bpy
@@ -227,14 +227,14 @@ class FollowActiveQuads(Operator):
bl_options = {'REGISTER', 'UNDO'}
mode = bpy.props.EnumProperty(
- name="Edge Length Mode",
- description="Method to space UV edge loops",
- items=(('EVEN', "Even", "Space all UVs evenly"),
- ('LENGTH', "Length", "Average space UVs edge length of each loop"),
- ('LENGTH_AVERAGE', "Length Average", "Average space UVs edge length of each loop"),
- ),
- default='LENGTH_AVERAGE',
- )
+ name="Edge Length Mode",
+ description="Method to space UV edge loops",
+ items=(('EVEN', "Even", "Space all UVs evenly"),
+ ('LENGTH', "Length", "Average space UVs edge length of each loop"),
+ ('LENGTH_AVERAGE', "Length Average", "Average space UVs edge length of each loop"),
+ ),
+ default='LENGTH_AVERAGE',
+ )
@classmethod
def poll(cls, context):