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>2021-09-23 13:45:40 +0300
committerBastien Montagne <bastien@blender.org>2021-09-23 13:45:40 +0300
commitce96a75c2cb17c255226c8b56f85231ce0578811 (patch)
tree9432308df8d3c8804ebd0dd0c395cc891ab833b4 /source/blender/blenloader
parent3558ae3b6c0859acef806f05222fb6b577db7855 (diff)
Cleanup: eBLOLibLinkFlags: Add 'space' between `APPEND` flags and `INSTANCE` ones.
Diffstat (limited to 'source/blender/blenloader')
-rw-r--r--source/blender/blenloader/BLO_readfile.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenloader/BLO_readfile.h b/source/blender/blenloader/BLO_readfile.h
index 1f0203b45e9..c3a57f17e8b 100644
--- a/source/blender/blenloader/BLO_readfile.h
+++ b/source/blender/blenloader/BLO_readfile.h
@@ -214,9 +214,9 @@ typedef enum eBLOLibLinkFlags {
/** Append (make local) also indirect dependencies of appendeds IDs. */
BLO_LIBLINK_APPEND_RECURSIVE = 1 << 20,
/** Instantiate object data IDs (i.e. create objects for them if needed). */
- BLO_LIBLINK_OBDATA_INSTANCE = 1 << 21,
+ BLO_LIBLINK_OBDATA_INSTANCE = 1 << 24,
/** Instantiate collections as empties, instead of linking them into current view layer. */
- BLO_LIBLINK_COLLECTION_INSTANCE = 1 << 22,
+ BLO_LIBLINK_COLLECTION_INSTANCE = 1 << 25,
} eBLOLibLinkFlags;
/**