[Bf-blender-cvs] [ed1b92cf8ef] gsoc-2018-many-light-sampling: Fix missing movieclip ID type in allowed ones for Outliner...

Bastien Montagne noreply at git.blender.org
Fri Jun 1 16:18:20 CEST 2018


Commit: ed1b92cf8ef5b764a70c5f57b5e33ce25c67be66
Author: Bastien Montagne
Date:   Wed May 30 16:14:55 2018 +0200
Branches: gsoc-2018-many-light-sampling
https://developer.blender.org/rBed1b92cf8ef5b764a70c5f57b5e33ce25c67be66

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