[Bf-blender-cvs] [94cd52a1626] blender-v2.92-release: VSE: Fix duplicate menu entries

Peter Fog noreply at git.blender.org
Fri Feb 19 13:49:13 CET 2021


Commit: 94cd52a162621e009a9e65f426b05f2c62389dc1
Author: Peter Fog
Date:   Fri Feb 19 13:37:31 2021 +0100
Branches: blender-v2.92-release
https://developer.blender.org/rB94cd52a162621e009a9e65f426b05f2c62389dc1

VSE: Fix duplicate menu entries

Commit rBf448ff2afe7a accidentally added menu entries that were removed.
`use_zoom_to_fit` is duplicated in menu, others were moved to overlays menu.

Remove these entries.

Reviewed By: ISS, campbellbarton

Differential Revision: https://developer.blender.org/D10453

===================================================================

M	release/scripts/startup/bl_ui/space_sequencer.py

===================================================================

diff --git a/release/scripts/startup/bl_ui/space_sequencer.py b/release/scripts/startup/bl_ui/space_sequencer.py
index 79f88b1b67d..8656dc3b409 100644
--- a/release/scripts/startup/bl_ui/space_sequencer.py
+++ b/release/scripts/startup/bl_ui/space_sequencer.py
@@ -408,17 +408,6 @@ class SEQUENCER_MT_view(Menu):
             if context.preferences.view.show_developer_ui:
                 layout.menu("SEQUENCER_MT_view_cache", text="Show Cache")
 
-        if is_preview:
-            layout.separator()
-            if st.display_mode == 'IMAGE':
-                layout.prop(st, "use_zoom_to_fit")
-                layout.prop(ed, "show_overlay", text="Show Frame Overlay")
-                layout.prop(st, "show_safe_areas", text="Show Safe Areas")
-                layout.prop(st, "show_metadata", text="Show Metadata")
-                layout.prop(st, "show_annotation", text="Show Annotations")
-            elif st.display_mode == 'WAVEFORM':
-                layout.prop(st, "show_separate_color", text="Show Separate Color Channels")
-
         layout.separator()
 
         layout.operator("render.opengl", text="Sequence Render Image", icon='RENDER_STILL').sequencer = True



More information about the Bf-blender-cvs mailing list