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>2016-07-15 08:56:28 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-07-15 08:56:28 +0300
commite56aa5d7889e51746f7cf84d1192822240195057 (patch)
tree66c31537d1fa1e7ed85fc9b6fe4759adff6b10a4 /source/blender/editors/object
parent97f894f3faa37391154813403aaedfaeae355cb6 (diff)
Fix select grouped parent, extend option was ignored
D2067 by @mangostaniko
Diffstat (limited to 'source/blender/editors/object')
-rw-r--r--source/blender/editors/object/object_select.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/blender/editors/object/object_select.c b/source/blender/editors/object/object_select.c
index 0cbbe46f461..f1b7186f8a1 100644
--- a/source/blender/editors/object/object_select.c
+++ b/source/blender/editors/object/object_select.c
@@ -577,7 +577,6 @@ static bool select_grouped_parent(bContext *C) /* Makes parent active and de-sel
/* can be NULL if parent in other scene */
if (baspar && BASE_SELECTABLE(v3d, baspar)) {
- ED_base_object_select(basact, BA_DESELECT);
ED_base_object_select(baspar, BA_SELECT);
ED_base_object_activate(C, baspar);
changed = true;