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:
authorCampbell Barton <ideasman42@gmail.com>2014-02-13 12:21:35 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-02-13 12:21:35 +0400
commit5fdf6169a3ed281c6655fdd1c14ad57fcdb972b9 (patch)
treeb053c8ad94b695925829d8ec2f840d64ab0d095f /release
parentae8327dbf3afcdb6a6a0335aceeaa58600d7f1d3 (diff)
Fix incorrect text for curve Shrink/Fatten, patch from SebastianK
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d_toolbar.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
index 039179afc8e..12b21d0d89f 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -446,7 +446,7 @@ class VIEW3D_PT_tools_transform_curve(View3DPanel, Panel):
col = layout.column(align=True)
col.operator("transform.tilt", text="Tilt")
- col.operator("transform.transform", text="Scale Feather").mode = 'CURVE_SHRINKFATTEN'
+ col.operator("transform.transform", text="Shrink/Fatten").mode = 'CURVE_SHRINKFATTEN'
class VIEW3D_PT_tools_curveedit(View3DPanel, Panel):