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:
Diffstat (limited to 'release/scripts/startup/bl_operators/clip.py')
-rw-r--r--release/scripts/startup/bl_operators/clip.py14
1 files changed, 8 insertions, 6 deletions
diff --git a/release/scripts/startup/bl_operators/clip.py b/release/scripts/startup/bl_operators/clip.py
index c9499388449..3c9fc012eeb 100644
--- a/release/scripts/startup/bl_operators/clip.py
+++ b/release/scripts/startup/bl_operators/clip.py
@@ -674,14 +674,16 @@ class CLIP_OT_setup_tracking_scene(Operator):
# rendersettings
setup_collection_recursively(
- vlayers["Foreground"].collections[0].children,
- "background",
- "holdout")
+ vlayers["Foreground"].collections[0].children,
+ "background",
+ "holdout",
+ )
setup_collection_recursively(
- vlayers["Background"].collections[0].children,
- "foreground",
- "indirect_only")
+ vlayers["Background"].collections[0].children,
+ "foreground",
+ "indirect_only",
+ )
@staticmethod
def _wipeDefaultNodes(tree):