[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [31293] trunk/blender/release/scripts/ui/ space_view3d.py: Fix #23269: inconsistent naming of recalculate roll in menus compared to

Brecht Van Lommel brecht at blender.org
Thu Aug 12 18:15:51 CEST 2010


Revision: 31293
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=31293
Author:   blendix
Date:     2010-08-12 18:15:50 +0200 (Thu, 12 Aug 2010)

Log Message:
-----------
Fix #23269: inconsistent naming of recalculate roll in menus compared to
operator popup menu.

Modified Paths:
--------------
    trunk/blender/release/scripts/ui/space_view3d.py

Modified: trunk/blender/release/scripts/ui/space_view3d.py
===================================================================
--- trunk/blender/release/scripts/ui/space_view3d.py	2010-08-12 15:26:23 UTC (rev 31292)
+++ trunk/blender/release/scripts/ui/space_view3d.py	2010-08-12 16:15:50 UTC (rev 31293)
@@ -1925,8 +1925,8 @@
     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()
 





More information about the Bf-blender-cvs mailing list