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>2022-08-12 16:18:37 +0300
committerBastien Montagne <bastien@blender.org>2022-08-12 16:18:37 +0300
commit110356d8ad17ebae9eb428b22cb69a68f42f90de (patch)
tree70e95272c98c4ecc0ab8ef30aa7a212185ed6458 /source/blender/editors/space_outliner
parent4e5f9bbd34743b1a8183758e4dafc8e9a5662117 (diff)
parent47af1ce8ac593d293a81774ef2f288777486cedd (diff)
Merge branch 'blender-v3.3-release'
Diffstat (limited to 'source/blender/editors/space_outliner')
-rw-r--r--source/blender/editors/space_outliner/outliner_tools.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/source/blender/editors/space_outliner/outliner_tools.cc b/source/blender/editors/space_outliner/outliner_tools.cc
index 1f74a3db0ff..f51a70af3bc 100644
--- a/source/blender/editors/space_outliner/outliner_tools.cc
+++ b/source/blender/editors/space_outliner/outliner_tools.cc
@@ -975,7 +975,6 @@ static void id_override_library_create_hierarchy_pre_process_fn(bContext *C,
BLI_assert(do_hierarchy);
UNUSED_VARS_NDEBUG(do_hierarchy);
- printf("Adding %s as selected item to get editable override\n", id_root_reference->name);
data->selected_id_uid.add(id_root_reference->session_uuid);
if (ID_IS_OVERRIDE_LIBRARY_REAL(id_root_reference) && !ID_IS_LINKED(id_root_reference)) {
@@ -989,7 +988,6 @@ static void id_override_library_create_hierarchy_pre_process_fn(bContext *C,
Collection *root_collection = reinterpret_cast<Collection *>(id_root_reference);
FOREACH_COLLECTION_OBJECT_RECURSIVE_BEGIN (root_collection, object_iter) {
if (id_root_reference->lib == object_iter->id.lib && object_iter->type == OB_ARMATURE) {
- printf("Adding %s as selected item to get editable override\n", object_iter->id.name);
data->selected_id_uid.add(object_iter->id.session_uuid);
}
}