[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [49138] trunk/blender/release/scripts/ startup/bl_ui/properties_data_mesh.py: Fix [#32163] vertex groups get wiped .

Bastien Montagne montagne29 at wanadoo.fr
Mon Jul 23 14:27:26 CEST 2012


Revision: 49138
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=49138
Author:   mont29
Date:     2012-07-23 12:27:26 +0000 (Mon, 23 Jul 2012)
Log Message:
-----------
Fix [#32163] vertex groups get wiped.

Usual "persistent" operator option... I guess there are still a few others that keep hiding in the dust! :)

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

Modified: trunk/blender/release/scripts/startup/bl_ui/properties_data_mesh.py
===================================================================
--- trunk/blender/release/scripts/startup/bl_ui/properties_data_mesh.py	2012-07-23 12:22:09 UTC (rev 49137)
+++ trunk/blender/release/scripts/startup/bl_ui/properties_data_mesh.py	2012-07-23 12:27:26 UTC (rev 49138)
@@ -148,7 +148,7 @@
 
         col = row.column(align=True)
         col.operator("object.vertex_group_add", icon='ZOOMIN', text="")
-        col.operator("object.vertex_group_remove", icon='ZOOMOUT', text="")
+        col.operator("object.vertex_group_remove", icon='ZOOMOUT', text="").all = False
         col.menu("MESH_MT_vertex_group_specials", icon='DOWNARROW_HLT', text="")
         if group:
             col.separator()




More information about the Bf-blender-cvs mailing list