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:
authorDalai Felinto <dfelinto@gmail.com>2018-02-09 14:04:00 +0300
committerDalai Felinto <dfelinto@gmail.com>2018-02-09 14:05:27 +0300
commit25074be697cb5726328aa5d064a60788c1da6aeb (patch)
treee75abc47e1d5c0db7ab4fe4db1d5989f7015c101 /tests/python/view_layer/CMakeLists.txt
parent37e53ca5f3496f9a09f46afd1e4ff2f1d2d153df (diff)
Fix collection syncing when creating new collections from the outliner
We were not passing a scene collection parent to the BKE_collection_add function, which in turn made syncing not work. Right now we: * Explicitly pass the master collection in this case * Fallback to the master collection in other cases With unittest.
Diffstat (limited to 'tests/python/view_layer/CMakeLists.txt')
-rw-r--r--tests/python/view_layer/CMakeLists.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/python/view_layer/CMakeLists.txt b/tests/python/view_layer/CMakeLists.txt
index e308e2e0952..cc5a3ba54b1 100644
--- a/tests/python/view_layer/CMakeLists.txt
+++ b/tests/python/view_layer/CMakeLists.txt
@@ -62,6 +62,7 @@ endmacro()
VIEW_LAYER_TEST(active_collection)
VIEW_LAYER_TEST(background_set)
+VIEW_LAYER_TEST(collection_new_sync)
VIEW_LAYER_TEST(collection_rename_a)
VIEW_LAYER_TEST(collection_rename_b)
VIEW_LAYER_TEST(evaluation_render_settings_a)