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:
authorNathan Craddock <nzcraddock@gmail.com>2020-11-26 00:55:09 +0300
committerNathan Craddock <nzcraddock@gmail.com>2020-12-05 03:50:46 +0300
commit1cc0a59be66a1d42ec316e0c29c2e3e184b26f7d (patch)
tree463ceb84d87317d32b44db0c03cbad33bf78f65e /source/blender/editors/space_outliner/tree/tree_display.cc
parentea37e4ea5a712f637e52ef5972a48920fa7e092f (diff)
Cleanup: Outliner video sequencer display mode
No functional changes. Code is ported to C++. Variable names and logic are also improved. Differential Revision: https://developer.blender.org/D9741
Diffstat (limited to 'source/blender/editors/space_outliner/tree/tree_display.cc')
-rw-r--r--source/blender/editors/space_outliner/tree/tree_display.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/editors/space_outliner/tree/tree_display.cc b/source/blender/editors/space_outliner/tree/tree_display.cc
index 12599733275..1419295c81c 100644
--- a/source/blender/editors/space_outliner/tree/tree_display.cc
+++ b/source/blender/editors/space_outliner/tree/tree_display.cc
@@ -37,6 +37,8 @@ TreeDisplay *outliner_tree_display_create(eSpaceOutliner_Mode mode, SpaceOutline
tree_display = new TreeDisplayLibraries(*space_outliner);
break;
case SO_SEQUENCE:
+ tree_display = new TreeDisplaySequencer(*space_outliner);
+ break;
case SO_DATA_API:
case SO_ID_ORPHANS:
break;