[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [44975] trunk/blender: Grumph, more fixes in this Select menu ( Invert had default op name for metaball and particules...).

Bastien Montagne montagne29 at wanadoo.fr
Sun Mar 18 21:04:44 CET 2012


Revision: 44975
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=44975
Author:   mont29
Date:     2012-03-18 20:04:41 +0000 (Sun, 18 Mar 2012)
Log Message:
-----------
Grumph, more fixes in this Select menu (Invert had default op name for metaball and particules...). Also fixed "(De)select All" name of particule op.

Modified Paths:
--------------
    trunk/blender/release/scripts/startup/bl_ui/space_view3d.py
    trunk/blender/source/blender/editors/physics/particle_edit.c

Modified: trunk/blender/release/scripts/startup/bl_ui/space_view3d.py
===================================================================
--- trunk/blender/release/scripts/startup/bl_ui/space_view3d.py	2012-03-18 19:55:42 UTC (rev 44974)
+++ trunk/blender/release/scripts/startup/bl_ui/space_view3d.py	2012-03-18 20:04:41 UTC (rev 44975)
@@ -491,7 +491,7 @@
 
         layout.operator("particle.select_all").action = 'TOGGLE'
         layout.operator("particle.select_linked")
-        layout.operator("particle.select_all").action = 'INVERT'
+        layout.operator("particle.select_all", text="Inverse").action = 'INVERT'
 
         layout.separator()
 
@@ -621,7 +621,7 @@
         layout.separator()
 
         layout.operator("mball.select_all").action = 'TOGGLE'
-        layout.operator("mball.select_all").action = 'INVERT'
+        layout.operator("mball.select_all", text="Inverse").action = 'INVERT'
 
         layout.separator()
 

Modified: trunk/blender/source/blender/editors/physics/particle_edit.c
===================================================================
--- trunk/blender/source/blender/editors/physics/particle_edit.c	2012-03-18 19:55:42 UTC (rev 44974)
+++ trunk/blender/source/blender/editors/physics/particle_edit.c	2012-03-18 20:04:41 UTC (rev 44975)
@@ -1360,7 +1360,7 @@
 void PARTICLE_OT_select_all(wmOperatorType *ot)
 {
 	/* identifiers */
-	ot->name= "Selection of all particles";
+	ot->name= "(De)select All";
 	ot->idname= "PARTICLE_OT_select_all";
 	
 	/* api callbacks */




More information about the Bf-blender-cvs mailing list