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>2018-05-23 13:19:56 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-05-23 13:51:48 +0300
commitd59b74adb38f3ac6b85107aa506e471efbd2a20c (patch)
tree28e68e70c08a204232cf3b04637e96c6e4a00594 /source/blender/makesdna/DNA_workspace_types.h
parent858e8f453d48fe8f2285ef2dd1d11cdc099de6d4 (diff)
Fix T53481: Linked scene crashes on load
Diffstat (limited to 'source/blender/makesdna/DNA_workspace_types.h')
-rw-r--r--source/blender/makesdna/DNA_workspace_types.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_workspace_types.h b/source/blender/makesdna/DNA_workspace_types.h
index 9da42d71d0f..784e563486f 100644
--- a/source/blender/makesdna/DNA_workspace_types.h
+++ b/source/blender/makesdna/DNA_workspace_types.h
@@ -180,6 +180,9 @@ typedef struct WorkSpaceDataRelation {
void *parent;
/* The value for this parent-data/workspace relation */
void *value;
+
+ /** Use when we reference non-ID data, this allows use to look it up when linking in a workspace. */
+ char value_idname[64]; /* MAX_NAME. */
} WorkSpaceDataRelation;
#endif /* DNA_PRIVATE_WORKSPACE_READ_WRITE */