From 94cd52a162621e009a9e65f426b05f2c62389dc1 Mon Sep 17 00:00:00 2001 From: Peter Fog Date: Fri, 19 Feb 2021 13:37:31 +0100 Subject: 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 --- release/scripts/startup/bl_ui/space_sequencer.py | 11 ----------- 1 file changed, 11 deletions(-) (limited to '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 -- cgit v1.2.3