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:
authorGaia Clary <gaia.clary@machinimatrix.org>2013-03-11 20:02:16 +0400
committerGaia Clary <gaia.clary@machinimatrix.org>2013-03-11 20:02:16 +0400
commit1672ac25ca9b828d5e3d3fc2a69b1c346304036c (patch)
tree877e84dc3e3ee2cf1a5cd40419e95e97d3a99ae8 /source/blender/editors/space_outliner/outliner_draw.c
parentf09f2d1c31e7df0f953e39006bfdaa57c0107543 (diff)
Ouliner: Added recursive select of (visible) bones (Edit- and Object-mode)
Diffstat (limited to 'source/blender/editors/space_outliner/outliner_draw.c')
-rw-r--r--source/blender/editors/space_outliner/outliner_draw.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/space_outliner/outliner_draw.c b/source/blender/editors/space_outliner/outliner_draw.c
index 30e3f6bbf0e..0d6f316b7e7 100644
--- a/source/blender/editors/space_outliner/outliner_draw.c
+++ b/source/blender/editors/space_outliner/outliner_draw.c
@@ -1322,7 +1322,7 @@ static void outliner_draw_iconrow(bContext *C, uiBlock *block, Scene *scene, Spa
}
}
else {
- active = tree_element_type_active(NULL, scene, soops, te, tselem, 0);
+ active = tree_element_type_active(NULL, scene, soops, te, tselem, 0, false);
}
if (active) {
@@ -1461,7 +1461,7 @@ static void outliner_draw_tree_element(bContext *C, uiBlock *block, Scene *scene
}
}
else {
- if (tree_element_type_active(NULL, scene, soops, te, tselem, 0) ) active = 2;
+ if (tree_element_type_active(NULL, scene, soops, te, tselem, 0, false) ) active = 2;
glColor4ub(220, 220, 255, alpha);
}