[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [57749] trunk/blender/release/scripts/ startup/bl_ui/space_view3d.py: Fixed operator call ( due to renamed operator parameter)

Gaia Clary gaia.clary at machinimatrix.org
Wed Jun 26 00:58:45 CEST 2013


Revision: 57749
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=57749
Author:   gaiaclary
Date:     2013-06-25 22:58:45 +0000 (Tue, 25 Jun 2013)
Log Message:
-----------
Fixed operator call (due to renamed operator parameter)

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

Modified: trunk/blender/release/scripts/startup/bl_ui/space_view3d.py
===================================================================
--- trunk/blender/release/scripts/startup/bl_ui/space_view3d.py	2013-06-25 22:58:23 UTC (rev 57748)
+++ trunk/blender/release/scripts/startup/bl_ui/space_view3d.py	2013-06-25 22:58:45 UTC (rev 57749)
@@ -1317,8 +1317,8 @@
             if ob.vertex_groups.active:
                 layout.separator()
                 layout.operator("object.vertex_group_assign", text="Assign to Active Group").new = False
-                layout.operator("object.vertex_group_remove_from", text="Remove from Active Group").all = False
-                layout.operator("object.vertex_group_remove_from", text="Remove from All").all = True
+                layout.operator("object.vertex_group_remove_from", text="Remove from Active Group").use_all_groups = False
+                layout.operator("object.vertex_group_remove_from", text="Remove from All").use_all_groups = True
                 layout.separator()
 
         if ob.vertex_groups.active:




More information about the Bf-blender-cvs mailing list