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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Montagne <montagne29@wanadoo.fr>2012-03-19 00:04:41 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2012-03-19 00:04:41 +0400
commit2635d78ec1506932f51a83f3bf8f3a55bb541a93 (patch)
treeda719938fe59335dedb30630e566d0ca443dd6af /release
parentdd69e76d820808039894109f258e04af683eb588 (diff)
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.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index 3e485f79c99..f0c9a24583a 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -491,7 +491,7 @@ class VIEW3D_MT_select_particle(Menu):
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 @@ class VIEW3D_MT_select_edit_metaball(Menu):
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()