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-10-08 18:18:15 +0300
committerBastien Montagne <bastien@blender.org>2020-10-08 18:19:05 +0300
commit8f798afbddfd18c42e94ed1ba89ecf4a78d997c3 (patch)
tree0458eee4d6e2e4f366ca51adf30778f02b85dc8f /source/blender/blenkernel/intern/collection.c
parentd3ba60b132631187d4b8a9343fbe19656b92cc89 (diff)
Cleanup/refactor: move init of MovieClip to proper place.
Diffstat (limited to 'source/blender/blenkernel/intern/collection.c')
-rw-r--r--source/blender/blenkernel/intern/collection.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/source/blender/blenkernel/intern/collection.c b/source/blender/blenkernel/intern/collection.c
index ed89a964237..b4db33b1c48 100644
--- a/source/blender/blenkernel/intern/collection.c
+++ b/source/blender/blenkernel/intern/collection.c
@@ -89,8 +89,6 @@ static void collection_init_data(ID *id)
BLI_assert(MEMCMP_STRUCT_AFTER_IS_ZERO(collection, id));
MEMCPY_STRUCT_AFTER(collection, DNA_struct_default_get(Collection), id);
-
- collection->color_tag = COLLECTION_COLOR_NONE;
}
/**