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:
authorAntonio Vazquez <blendergit@gmail.com>2022-03-03 14:37:38 +0300
committerAntonio Vazquez <blendergit@gmail.com>2022-03-03 14:37:48 +0300
commit2d24ba0210e35782e4f9a3d9c0b1763384463d32 (patch)
tree9d7d15e96581d72b588619fdad9c3bbbe0bec085 /release/scripts/startup/bl_ui/space_sequencer.py
parentce0d4ea41c6ea8bba05b1dbf42eec2ac7438cb39 (diff)
VSE: Allow to create scene in strip properties
This patch adds a button in the scene to add a new one, but this does not change to the new created scene because this breaks the storyboarding workflow. This is a common request for Storyboarding artists. Reviewed By: mendio, brecht, ISS Differential Revision: https://developer.blender.org/D14148
Diffstat (limited to 'release/scripts/startup/bl_ui/space_sequencer.py')
-rw-r--r--release/scripts/startup/bl_ui/space_sequencer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/space_sequencer.py b/release/scripts/startup/bl_ui/space_sequencer.py
index f979b5441a1..76a69e878b0 100644
--- a/release/scripts/startup/bl_ui/space_sequencer.py
+++ b/release/scripts/startup/bl_ui/space_sequencer.py
@@ -1682,7 +1682,7 @@ class SEQUENCER_PT_scene(SequencerButtonsPanel, Panel):
layout.use_property_decorate = False
layout.active = not strip.mute
- layout.template_ID(strip, "scene", text="Scene")
+ layout.template_ID(strip, "scene", text="Scene", new="scene.new_sequencer")
layout.prop(strip, "scene_input", text="Input")
if strip.scene_input == 'CAMERA':