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:
authorDalai Felinto <dfelinto@gmail.com>2019-07-17 00:05:43 +0300
committerDalai Felinto <dfelinto@gmail.com>2019-07-18 01:38:54 +0300
commita6b7ee2a1e8f4631b14293aedcef1e981a56dc8a (patch)
treec31480100cc100835dd5d13a8ce96fa62d7d7f21 /source/blender
parentbfa6cb3a7d9a867d4f664e169ab8b65e2bd2142b (diff)
Fix T66948: Outliner - collections/objects with wrong active state
If the parent collection was out of view we were not taking its properties into consideration. We need it even when not drawing the parent to set active/inactive values for its children. Related Task: T66948 Reviewers: brecht Subscribers: Zachman Differential Revision: https://developer.blender.org/D5272
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/editors/space_outliner/outliner_draw.c70
1 files changed, 48 insertions, 22 deletions
diff --git a/source/blender/editors/space_outliner/outliner_draw.c b/source/blender/editors/space_outliner/outliner_draw.c
index 31783e09aeb..55130ae8894 100644
--- a/source/blender/editors/space_outliner/outliner_draw.c
+++ b/source/blender/editors/space_outliner/outliner_draw.c
@@ -933,6 +933,40 @@ static void outliner_restrict_properties_enable_layer_collection_set(
}
}
+static bool outliner_restrict_properties_collection_set(Scene *scene,
+ TreeElement *te,
+ PointerRNA *collection_ptr,
+ PointerRNA *layer_collection_ptr,
+ RestrictProperties *props,
+ RestrictPropertiesActive *props_active)
+{
+ TreeStoreElem *tselem = TREESTORE(te);
+ LayerCollection *layer_collection = (tselem->type == TSE_LAYER_COLLECTION) ? te->directdata :
+ NULL;
+ Collection *collection = outliner_collection_from_tree_element(te);
+
+ if ((collection->flag & COLLECTION_IS_MASTER) ||
+ (layer_collection && ((layer_collection->flag & LAYER_COLLECTION_EXCLUDE) != 0))) {
+ return false;
+ }
+
+ /* Create the PointerRNA. */
+ RNA_id_pointer_create(&collection->id, collection_ptr);
+ if (layer_collection != NULL) {
+ RNA_pointer_create(&scene->id, &RNA_LayerCollection, layer_collection, layer_collection_ptr);
+ }
+
+ /* Update the restriction column values for the collection children. */
+ if (layer_collection) {
+ outliner_restrict_properties_enable_layer_collection_set(
+ layer_collection_ptr, collection_ptr, props, props_active);
+ }
+ else {
+ outliner_restrict_properties_enable_collection_set(collection_ptr, props, props_active);
+ }
+ return true;
+}
+
static void outliner_draw_restrictbuts(uiBlock *block,
Scene *scene,
ViewLayer *view_layer,
@@ -1337,30 +1371,16 @@ static void outliner_draw_restrictbuts(uiBlock *block,
}
}
else if (outliner_is_collection_tree_element(te)) {
- LayerCollection *layer_collection = (tselem->type == TSE_LAYER_COLLECTION) ?
- te->directdata :
- NULL;
- Collection *collection = outliner_collection_from_tree_element(te);
- if ((!layer_collection || !(layer_collection->flag & LAYER_COLLECTION_EXCLUDE)) &&
- !(collection->flag & COLLECTION_IS_MASTER)) {
+ PointerRNA collection_ptr;
+ PointerRNA layer_collection_ptr;
- PointerRNA collection_ptr;
- PointerRNA layer_collection_ptr;
- RNA_id_pointer_create(&collection->id, &collection_ptr);
- if (layer_collection != NULL) {
- RNA_pointer_create(
- &scene->id, &RNA_LayerCollection, layer_collection, &layer_collection_ptr);
- }
+ if (outliner_restrict_properties_collection_set(
+ scene, te, &collection_ptr, &layer_collection_ptr, &props, &props_active)) {
- /* Update the restriction column values for the collection children. */
- if (layer_collection) {
- outliner_restrict_properties_enable_layer_collection_set(
- &layer_collection_ptr, &collection_ptr, &props, &props_active);
- }
- else {
- outliner_restrict_properties_enable_collection_set(
- &collection_ptr, &props, &props_active);
- }
+ LayerCollection *layer_collection = (tselem->type == TSE_LAYER_COLLECTION) ?
+ te->directdata :
+ NULL;
+ Collection *collection = outliner_collection_from_tree_element(te);
if (layer_collection != NULL) {
if (soops->show_restrict_flags & SO_RESTRICT_HIDE) {
@@ -1563,6 +1583,12 @@ static void outliner_draw_restrictbuts(uiBlock *block,
}
}
}
+ else if (outliner_is_collection_tree_element(te)) {
+ PointerRNA collection_ptr;
+ PointerRNA layer_collection_ptr;
+ outliner_restrict_properties_collection_set(
+ scene, te, &collection_ptr, &layer_collection_ptr, &props, &props_active);
+ }
if (TSELEM_OPEN(tselem, soops)) {
outliner_draw_restrictbuts(block, scene, view_layer, ar, soops, &te->subtree, props_active);