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:
authorJacques Lucke <jacques@blender.org>2020-10-07 13:35:58 +0300
committerJacques Lucke <jacques@blender.org>2020-10-07 13:35:58 +0300
commit65a6caafce9f1cde7e128786daa90342c192900c (patch)
tree3b5f46753773a0499a6bb2df4f9f24220a1bb44c /source/blender/blenkernel/intern/workspace.c
parente2526e338f12832c1ab945907f5be075124fcf24 (diff)
IDTypeInfo: add flag to indicate that ID has no animation data
This is part of T75724. Reviewers: mont29 Differential Revision: https://developer.blender.org/D9134
Diffstat (limited to 'source/blender/blenkernel/intern/workspace.c')
-rw-r--r--source/blender/blenkernel/intern/workspace.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/workspace.c b/source/blender/blenkernel/intern/workspace.c
index 775d83278e9..5db534b76b4 100644
--- a/source/blender/blenkernel/intern/workspace.c
+++ b/source/blender/blenkernel/intern/workspace.c
@@ -83,7 +83,7 @@ IDTypeInfo IDType_ID_WS = {
.name = "WorkSpace",
.name_plural = "workspaces",
.translation_context = BLT_I18NCONTEXT_ID_WORKSPACE,
- .flags = IDTYPE_FLAGS_NO_COPY | IDTYPE_FLAGS_NO_MAKELOCAL,
+ .flags = IDTYPE_FLAGS_NO_COPY | IDTYPE_FLAGS_NO_MAKELOCAL | IDTYPE_FLAGS_NO_ANIMDATA,
.init_data = NULL,
.copy_data = NULL,