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:
authorCampbell Barton <ideasman42@gmail.com>2020-01-25 12:09:20 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-01-25 12:15:38 +0300
commitcb83cf1b71664c569f72168b759a30152a60607c (patch)
tree18013c314d5d7d483f8b51aae1a0e1c1b78895d2 /source/blender/editors/object
parentcdebc8a9f60141bed38a89017167f0e41738ef13 (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/editors/object')
-rw-r--r--source/blender/editors/object/object_relations.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/object/object_relations.c b/source/blender/editors/object/object_relations.c
index b9c89b9944f..f9e2a2b8a1a 100644
--- a/source/blender/editors/object/object_relations.c
+++ b/source/blender/editors/object/object_relations.c
@@ -1758,10 +1758,10 @@ static Collection *single_object_users_collection(Main *bmain,
bmain, scene, child->collection, flag, copy_collections, false);
if (is_master_collection && copy_collections && child->collection != collection_child_new) {
- /* We do not want a collection sync here, our collections are in a complete unsetled state
- * currently. With current code, that would lead to a memory leak - because of reasons.
+ /* We do not want a collection sync here, our collections are in a complete uninitialized
+ * state currently. With current code, that would lead to a memory leak - because of reasons.
* It would be a useless loss of computing anyway, since caller has to fully refresh
- * viewlayers/collections caching at the end. */
+ * view-layers/collections caching at the end. */
BKE_collection_child_add_no_sync(collection, collection_child_new);
BLI_remlink(&collection->children, child);
MEM_freeN(child);