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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2010-08-12 20:15:50 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2010-08-12 20:15:50 +0400
commitdc3ddd518b5df94e89d03523654ae6acc5cb5739 (patch)
treedee773f2bf73ac0c5fccc52b94767afedc5eae1a
parent7c8f1eb04e0a23769c2d610ed965900e5426c11e (diff)
Fix #23269: inconsistent naming of recalculate roll in menus compared to
operator popup menu.
-rw-r--r--release/scripts/ui/space_view3d.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/ui/space_view3d.py b/release/scripts/ui/space_view3d.py
index a3e945f460a..38e91de3884 100644
--- a/release/scripts/ui/space_view3d.py
+++ b/release/scripts/ui/space_view3d.py
@@ -1925,8 +1925,8 @@ class VIEW3D_MT_edit_armature_roll(bpy.types.Menu):
def draw(self, context):
layout = self.layout
- layout.operator("armature.calculate_roll", text="Clear Roll (Z-Axis Up)").type = 'GLOBALUP'
- layout.operator("armature.calculate_roll", text="Roll to Cursor").type = 'CURSOR'
+ layout.operator("armature.calculate_roll", text="Recalculate with Z-Axis Up").type = 'GLOBALUP'
+ layout.operator("armature.calculate_roll", text="Recalculate with Z-Axis to Cursor").type = 'CURSOR'
layout.separator()