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:
authorLuca Bonavita <mindrones@gmail.com>2010-07-24 20:35:58 +0400
committerLuca Bonavita <mindrones@gmail.com>2010-07-24 20:35:58 +0400
commit0eca3db6c5e14109c6287784d32129e45c03d2b3 (patch)
tree0a18b5f71cf35053b4c7ff4804875213415e9e49 /release
parenteabbbcdff9c26f5d8e757e7103e63d004d606410 (diff)
- typo: from "lenght" to "length" in rna
fixes [#22997] typo in autocomplete/python api name in bpy.context.active_object.data.draw_edge_lenght not length https://projects.blender.org/tracker/index.php?func=detail&aid=22997&group_id=9&atid=498 no addons are affected by this change - also found a typo in particles toolbar
Diffstat (limited to 'release')
-rw-r--r--release/scripts/ui/space_view3d.py2
-rw-r--r--release/scripts/ui/space_view3d_toolbar.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/ui/space_view3d.py b/release/scripts/ui/space_view3d.py
index c5d74d397e8..12b3c508ac2 100644
--- a/release/scripts/ui/space_view3d.py
+++ b/release/scripts/ui/space_view3d.py
@@ -2079,7 +2079,7 @@ class VIEW3D_PT_view3d_meshdisplay(bpy.types.Panel):
col.separator()
col.label(text="Numerics:")
- col.prop(mesh, "draw_edge_lenght")
+ col.prop(mesh, "draw_edge_length")
col.prop(mesh, "draw_edge_angle")
col.prop(mesh, "draw_face_area")
diff --git a/release/scripts/ui/space_view3d_toolbar.py b/release/scripts/ui/space_view3d_toolbar.py
index 589428dfe4d..9d3c26891af 100644
--- a/release/scripts/ui/space_view3d_toolbar.py
+++ b/release/scripts/ui/space_view3d_toolbar.py
@@ -1355,7 +1355,7 @@ class VIEW3D_PT_tools_particlemode(View3DPanel):
col = layout.column(align=True)
col.active = pe.editable
col.label(text="Keep:")
- col.prop(pe, "keep_lengths", text="Lenghts")
+ col.prop(pe, "keep_lengths", text="Lengths")
col.prop(pe, "keep_root", text="Root")
if not pe.hair:
col.label(text="Correct:")