VSE: Move the seq prefetch setting to the cache tab and turn on per default

This commit is contained in:
Sebastian Parborg
2025-05-16 16:58:58 +02:00
committed by Sebastian Parborg
parent c0c03005e5
commit 5bd03f3618
3 changed files with 8 additions and 6 deletions

View File

@@ -2571,6 +2571,10 @@ class SEQUENCER_PT_cache_settings(SequencerButtonsPanel, Panel):
ed = context.scene.sequence_editor
col = layout.column()
if ed:
col.prop(ed, "use_prefetch")
col = layout.column(heading="Cache", align=True)
col.prop(ed, "use_cache_raw", text="Raw")
@@ -2761,10 +2765,6 @@ class SEQUENCER_PT_view(SequencerButtonsPanel_Output, Panel):
if st.proxy_render_size in {'NONE', 'SCENE'}:
col.enabled = False
col = layout.column()
if ed:
col.prop(ed, "use_prefetch")
col.prop(st, "display_channel", text="Channel")
if st.display_mode == 'IMAGE':