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:
authorSergey Sharybin <sergey@blender.org>2022-07-04 13:27:45 +0300
committerSergey Sharybin <sergey@blender.org>2022-07-04 13:27:45 +0300
commit1c38bfdc6f6be53d8a8a306acae06403e2bab8a8 (patch)
tree2993b1148976051d80c55114ee7f5b66cda27061 /source/blender/depsgraph
parent004913dd957b641eb1b283b469838220406d0787 (diff)
Cleanup: Clarify relation name for time relation to modifier
Diffstat (limited to 'source/blender/depsgraph')
-rw-r--r--source/blender/depsgraph/intern/builder/deg_builder_relations.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/depsgraph/intern/builder/deg_builder_relations.cc b/source/blender/depsgraph/intern/builder/deg_builder_relations.cc
index c13c6d2f870..afcf3eaacb7 100644
--- a/source/blender/depsgraph/intern/builder/deg_builder_relations.cc
+++ b/source/blender/depsgraph/intern/builder/deg_builder_relations.cc
@@ -2191,7 +2191,7 @@ void DepsgraphRelationBuilder::build_object_data_geometry(Object *object)
}
if (BKE_object_modifier_use_time(scene_, object, md)) {
TimeSourceKey time_src_key;
- add_relation(time_src_key, obdata_ubereval_key, "Time Source");
+ add_relation(time_src_key, obdata_ubereval_key, "Time Source -> Modifier");
}
}
}