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 <bastien@blender.org>2020-06-19 18:00:42 +0300
committerBastien Montagne <bastien@blender.org>2020-06-19 18:01:20 +0300
commite18d6f520693e31a46226821cad1226e400eb0bc (patch)
tree29064077ee030b032ea5c31b2d6870c8b49368b7 /source/blender/editors/object
parentf6b23c63e1d7aae45ac97b92d4b57d550c6051bc (diff)
LibOverride: Cleanup: remove unused parameter.
Diffstat (limited to 'source/blender/editors/object')
-rw-r--r--source/blender/editors/object/object_relations.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/object/object_relations.c b/source/blender/editors/object/object_relations.c
index 4a05658fc00..7ec236de6f0 100644
--- a/source/blender/editors/object/object_relations.c
+++ b/source/blender/editors/object/object_relations.c
@@ -2404,7 +2404,7 @@ static int make_override_library_exec(bContext *C, wmOperator *op)
BKE_view_layer_base_select_and_set_active(view_layer, base);
}
/* We still want to store all objects' current override status (i.e. change of parent). */
- BKE_lib_override_library_operations_create(bmain, &new_ob->id, true);
+ BKE_lib_override_library_operations_create(bmain, &new_ob->id);
}
}
FOREACH_COLLECTION_OBJECT_RECURSIVE_END;