Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Montagne <montagne29@wanadoo.fr>2012-03-17 23:14:43 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2012-03-17 23:14:43 +0400
commit2c33069da7dcc1403e611de6e3d48e5acceb576d (patch)
tree340c7a63f56171db446fdd198f00fddb13599ea7 /space_view3d_spacebar_menu.py
parentc40f80eb866ee85c7c7f127e7e9600b5b4daa538 (diff)
UI messages: unification of select/deselect stuff.
Previously we had three versions, Select/Deselect, Select or Deselect, and (De)select, choosen the third (shortest) one for now.
Diffstat (limited to 'space_view3d_spacebar_menu.py')
-rw-r--r--space_view3d_spacebar_menu.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/space_view3d_spacebar_menu.py b/space_view3d_spacebar_menu.py
index 47abe550..359c1804 100644
--- a/space_view3d_spacebar_menu.py
+++ b/space_view3d_spacebar_menu.py
@@ -804,7 +804,7 @@ class VIEW3D_MT_SelectMenu(bpy.types.Menu):
layout.operator("view3d.select_circle")
layout.separator()
- layout.operator("object.select_all", text="Select/Deselect All").action = 'TOGGLE'
+ layout.operator("object.select_all").action = 'TOGGLE'
layout.operator("object.select_all", text="Inverse").action = 'INVERT'
layout.operator("object.select_random", text="Random")
layout.operator("object.select_mirror", text="Mirror")
@@ -830,7 +830,7 @@ class VIEW3D_MT_SelectEditMenu(bpy.types.Menu):
layout.operator("view3d.select_circle")
layout.separator()
- layout.operator("mesh.select_all", text="Select/Deselect All").action = 'TOGGLE'
+ layout.operator("mesh.select_all").action = 'TOGGLE'
layout.operator("mesh.select_all", text="Inverse").action = 'INVERT'
layout.separator()
@@ -880,7 +880,7 @@ class VIEW3D_MT_SelectCurveMenu(bpy.types.Menu):
layout.operator("view3d.select_circle")
layout.separator()
- layout.operator("curve.select_all", text="Select/Deselect All").action = 'TOGGLE'
+ layout.operator("curve.select_all").action = 'TOGGLE'
layout.operator("curve.select_all").action = 'INVERT'
layout.operator("curve.select_random")
layout.operator("curve.select_nth")
@@ -904,7 +904,7 @@ class VIEW3D_MT_SelectArmatureMenu(bpy.types.Menu):
layout.operator("view3d.select_border")
layout.separator()
- layout.operator("armature.select_all", text="Select/Deselect All")
+ layout.operator("armature.select_all")
layout.operator("armature.select_inverse", text="Inverse")
layout.separator()
@@ -936,7 +936,7 @@ class VIEW3D_MT_SelectPoseMenu(bpy.types.Menu):
layout.operator("view3d.select_border")
layout.separator()
- layout.operator("pose.select_all", text="Select/Deselect All").action = 'TOGGLE'
+ layout.operator("pose.select_all").action = 'TOGGLE'
layout.operator("pose.select_all", text="Inverse").action = 'INVERT'
layout.operator("pose.select_constraint_target",
text="Constraint Target")
@@ -1002,7 +1002,7 @@ class VIEW3D_MT_SelectSurface(bpy.types.Menu):
layout.separator()
- layout.operator("curve.select_all", text="Select/Deselect All").action = 'TOGGLE'
+ layout.operator("curve.select_all").action = 'TOGGLE'
layout.operator("curve.select_all").action = 'INVERT'
layout.operator("curve.select_random")
layout.operator("curve.select_nth")