[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [33787] trunk/blender/release/scripts/ui/ space_view3d.py: Py UI fix: options for "Single user" had different names than the operator itself.

Ton Roosendaal ton at blender.org
Sun Dec 19 14:48:45 CET 2010


Revision: 33787
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=33787
Author:   ton
Date:     2010-12-19 14:48:45 +0100 (Sun, 19 Dec 2010)

Log Message:
-----------
Py UI fix: options for "Single user" had different names than the operator itself.

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-12-19 13:04:14 UTC (rev 33786)
+++ trunk/blender/release/scripts/ui/space_view3d.py	2010-12-19 13:48:45 UTC (rev 33787)
@@ -897,16 +897,16 @@
         props = layout.operator("object.make_single_user", text="Object")
         props.object = True
 
-        props = layout.operator("object.make_single_user", text="Object & ObData")
+        props = layout.operator("object.make_single_user", text="Object & Data")
         props.object = props.obdata = True
 
-        props = layout.operator("object.make_single_user", text="Object & ObData & Materials+Tex")
+        props = layout.operator("object.make_single_user", text="Object & Data & Materials+Tex")
         props.object = props.obdata = props.material = props.texture = True
 
         props = layout.operator("object.make_single_user", text="Materials+Tex")
         props.material = props.texture = True
 
-        props = layout.operator("object.make_single_user", text="Animation")
+        props = layout.operator("object.make_single_user", text="Object Animation")
         props.animation = True
 
 





More information about the Bf-blender-cvs mailing list