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:
authorTon Roosendaal <ton@blender.org>2010-11-16 15:10:57 +0300
committerTon Roosendaal <ton@blender.org>2010-11-16 15:10:57 +0300
commit2de1c1fe1ba53ae2ab0a59dd8810972bdd8b6af2 (patch)
tree2d2bc191b5414ce338688c6b1b4130fbf6f41a69 /release
parent34c67bae0cf85eb3f7a2018114f010c98ec1af7d (diff)
Fixed wrong rna name for the old "UV Orco" option.
It was called "map on length", but it actually makes the UV values of curves/nurbs to become used as "Generated" texture map input. Sorry; this might break own local UI py script saves... :)
Diffstat (limited to 'release')
-rw-r--r--release/scripts/ui/properties_data_curve.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/ui/properties_data_curve.py b/release/scripts/ui/properties_data_curve.py
index 54fa6e2d460..187a25e8d67 100644
--- a/release/scripts/ui/properties_data_curve.py
+++ b/release/scripts/ui/properties_data_curve.py
@@ -118,7 +118,7 @@ class DATA_PT_shape_curve(CurveButtonsPanel, bpy.types.Panel):
sub.prop(curve, "use_fill_deform", text="Use Deformed")
col.label(text="Textures:")
- col.prop(curve, "use_map_on_length")
+ col.prop(curve, "use_uv_as_generated")
col.prop(curve, "use_auto_texspace")