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-07-22 04:46:27 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-07-22 04:57:04 +0300
commit83cb4f5f8f2a7db3ba89331c7e8b044c2ddf2cb9 (patch)
treee91fd96015b9c2a7cfa3089350201aeae61d4aaf /source/blender/editors/object/object_relations.c
parent7fc9666c893983d9e8c2af999e960e0ddae68e8f (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/editors/object/object_relations.c')
-rw-r--r--source/blender/editors/object/object_relations.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/object/object_relations.c b/source/blender/editors/object/object_relations.c
index 17370b88861..9520b03f3a6 100644
--- a/source/blender/editors/object/object_relations.c
+++ b/source/blender/editors/object/object_relations.c
@@ -2244,8 +2244,8 @@ void OBJECT_OT_make_local(wmOperatorType *ot)
static bool make_override_library_ovject_overridable_check(Main *bmain, Object *object)
{
- /* An object is actually overridable only if it is in at least one local collections...
- * Unfortunatly 'direct link' flag is not enough here. */
+ /* An object is actually overrideable only if it is in at least one local collections.
+ * Unfortunately 'direct link' flag is not enough here. */
LISTBASE_FOREACH (Collection *, collection, &bmain->collections) {
if (!ID_IS_LINKED(collection) && BKE_collection_has_object(collection, object)) {
return true;