[Bf-blender-cvs] [c8aed23a1c2] soc-2019-outliner: Outliner: Draw correct scene icon

Nathan Craddock noreply at git.blender.org
Tue Jul 2 05:40:31 CEST 2019


Commit: c8aed23a1c291bfd048efefac7b2c2f08b7f4ea6
Author: Nathan Craddock
Date:   Mon Jul 1 21:13:34 2019 -0600
Branches: soc-2019-outliner
https://developer.blender.org/rBc8aed23a1c291bfd048efefac7b2c2f08b7f4ea6

Outliner: Draw correct scene icon

Was drawing incorrect icon for scene

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

M	source/blender/editors/space_outliner/outliner_draw.c

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

diff --git a/source/blender/editors/space_outliner/outliner_draw.c b/source/blender/editors/space_outliner/outliner_draw.c
index 2a52f501b9a..663d3926981 100644
--- a/source/blender/editors/space_outliner/outliner_draw.c
+++ b/source/blender/editors/space_outliner/outliner_draw.c
@@ -2239,7 +2239,7 @@ TreeElementIcon tree_element_get_icon(TreeStoreElem *tselem, TreeElement *te)
       case TSE_SEQUENCE:
         switch (te->idcode) {
           case SEQ_TYPE_SCENE:
-            data.icon = ICON_SCENE;
+            data.icon = ICON_SCENE_DATA;
             break;
           case SEQ_TYPE_MOVIECLIP:
             data.icon = ICON_TRACKER;



More information about the Bf-blender-cvs mailing list