Fix #147655: VSE: Sequencer scene datablock missing in combined view
UI code forgot to check for `SEQUENCER_PREVIEW` view type.
This commit is contained in:
committed by
John Kiril Swenson
parent
6d884e0da5
commit
99b9f6cafc
@@ -95,7 +95,7 @@ class SEQUENCER_HT_header(Header):
|
||||
tool_settings = scene.tool_settings if scene else None
|
||||
sequencer_tool_settings = tool_settings.sequencer_tool_settings if tool_settings else None
|
||||
|
||||
if st.view_type == 'SEQUENCER':
|
||||
if st.view_type in {'SEQUENCER', 'SEQUENCER_PREVIEW'}:
|
||||
row = layout.row(align=True)
|
||||
row.template_ID(context.workspace, "sequencer_scene", new="scene.new_sequencer_scene")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user