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:
authorCampbell Barton <ideasman42@gmail.com>2012-03-19 00:10:58 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-03-19 00:10:58 +0400
commit9db821a5db8e45b671af665062732c08c7fc2b13 (patch)
tree2511d2b5e70a507880e55fd5b7c0145c357d2144 /release
parent2635d78ec1506932f51a83f3bf8f3a55bb541a93 (diff)
lattice & UV 'select all' menu items were missing action assignment.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_clip.py3
-rw-r--r--release/scripts/startup/bl_ui/space_image.py2
2 files changed, 2 insertions, 3 deletions
diff --git a/release/scripts/startup/bl_ui/space_clip.py b/release/scripts/startup/bl_ui/space_clip.py
index 4cd5cddba11..9b7a3095790 100644
--- a/release/scripts/startup/bl_ui/space_clip.py
+++ b/release/scripts/startup/bl_ui/space_clip.py
@@ -985,8 +985,7 @@ class CLIP_MT_select(Menu):
layout.separator()
- props = layout.operator("clip.select_all")
- props.action = 'TOGGLE'
+ layout.operator("clip.select_all").action = 'TOGGLE'
layout.operator("clip.select_all", text="Inverse").action = 'INVERT'
layout.menu("CLIP_MT_select_grouped")
diff --git a/release/scripts/startup/bl_ui/space_image.py b/release/scripts/startup/bl_ui/space_image.py
index c0cc692f2f1..c91f63cac8b 100644
--- a/release/scripts/startup/bl_ui/space_image.py
+++ b/release/scripts/startup/bl_ui/space_image.py
@@ -97,7 +97,7 @@ class IMAGE_MT_select(Menu):
layout.separator()
- layout.operator("uv.select_all")
+ layout.operator("uv.select_all").action = 'TOGGLE'
layout.operator("uv.select_all", text="Inverse").action = 'INVERT'
layout.operator("uv.unlink_selected")