[Bf-blender-cvs] [10a2562bc5d] master: Fix missing movieclip ID type in allowed ones for Outliner...

Bastien Montagne noreply at git.blender.org
Wed May 30 16:15:20 CEST 2018


Commit: 10a2562bc5d4c873bbe58e4aa3d19522080d1f2b
Author: Bastien Montagne
Date:   Wed May 30 16:14:55 2018 +0200
Branches: master
https://developer.blender.org/rB10a2562bc5d4c873bbe58e4aa3d19522080d1f2b

Fix missing movieclip ID type in allowed ones for Outliner...

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

M	source/blender/editors/space_outliner/outliner_intern.h

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

diff --git a/source/blender/editors/space_outliner/outliner_intern.h b/source/blender/editors/space_outliner/outliner_intern.h
index ca7dbe4f73c..b9e1cc46bd6 100644
--- a/source/blender/editors/space_outliner/outliner_intern.h
+++ b/source/blender/editors/space_outliner/outliner_intern.h
@@ -62,7 +62,7 @@ typedef struct TreeElement {
 #define TREESTORE_ID_TYPE(_id) \
 	(ELEM(GS((_id)->name), ID_SCE, ID_LI, ID_OB, ID_ME, ID_CU, ID_MB, ID_NT, ID_MA, ID_TE, ID_IM, ID_LT, ID_LA, ID_CA) || \
 	 ELEM(GS((_id)->name), ID_KE, ID_WO, ID_SPK, ID_GR, ID_AR, ID_AC, ID_BR, ID_PA, ID_GD, ID_LS) || \
-	 ELEM(GS((_id)->name), ID_SCR, ID_WM, ID_TXT, ID_VF, ID_SO, ID_CF, ID_PAL))  /* Only in 'blendfile' mode ... :/ */
+	 ELEM(GS((_id)->name), ID_SCR, ID_WM, ID_TXT, ID_VF, ID_SO, ID_CF, ID_PAL, ID_MC))  /* Only in 'blendfile' mode ... :/ */
 
 /* TreeElement->flag */
 #define TE_ACTIVE       1



More information about the Bf-blender-cvs mailing list