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:
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")