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-03-24 12:46:38 +0300
committerBastien Montagne <bastien@blender.org>2021-03-24 17:11:54 +0300
commit4d18fa268cf3f8db7e448c7408738b2bd497250b (patch)
tree4c7b6258a66ae0850ea3e0c10cac9093c068953d
parent93bedcb96ac8036bfa9649f5bc7aaee28762bb9c (diff)
Tweak default ID types processing order, step 01: Collections.
Move `OB_GR` processing just after scenes, and before objects. This is much more sensible in general, and fixes glitches in auto-resync process of library overrides in particular.
-rw-r--r--source/blender/makesdna/DNA_ID.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_ID.h b/source/blender/makesdna/DNA_ID.h
index 077f9bf8bdc..76676c0ebc1 100644
--- a/source/blender/makesdna/DNA_ID.h
+++ b/source/blender/makesdna/DNA_ID.h
@@ -787,7 +787,6 @@ enum {
INDEX_ID_CA,
INDEX_ID_TXT,
INDEX_ID_SO,
- INDEX_ID_GR,
INDEX_ID_PC,
INDEX_ID_BR,
INDEX_ID_PA,
@@ -798,6 +797,7 @@ enum {
INDEX_ID_SCR,
INDEX_ID_OB,
INDEX_ID_LS,
+ INDEX_ID_GR,
INDEX_ID_SCE,
INDEX_ID_WS,
INDEX_ID_WM,