[Bf-blender-cvs] [4d18fa268cf] master: Tweak default ID types processing order, step 01: Collections.

Bastien Montagne noreply at git.blender.org
Wed Mar 24 15:19:00 CET 2021


Commit: 4d18fa268cf3f8db7e448c7408738b2bd497250b
Author: Bastien Montagne
Date:   Wed Mar 24 10:46:38 2021 +0100
Branches: master
https://developer.blender.org/rB4d18fa268cf3f8db7e448c7408738b2bd497250b

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.

===================================================================

M	source/blender/makesdna/DNA_ID.h

===================================================================

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,



More information about the Bf-blender-cvs mailing list