[Bf-blender-cvs] [9441413cb24] master: VSE: Remove fit method tool setting from header

Richard Antalik noreply at git.blender.org
Sun Jan 10 16:40:55 CET 2021


Commit: 9441413cb242f549ba1f86621ff72e90418313df
Author: Richard Antalik
Date:   Sun Jan 10 16:37:18 2021 +0100
Branches: master
https://developer.blender.org/rB9441413cb242f549ba1f86621ff72e90418313df

VSE: Remove fit method tool setting from header

This property was intended to affect fit method for added strips prior
to running operator. However UI team did not agree with current
implementation.

ref T84535

Reviewed By: HooglyBoogly

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

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

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 b5c1ea8aa96..5034f2efa31 100644
--- a/release/scripts/startup/bl_ui/space_sequencer.py
+++ b/release/scripts/startup/bl_ui/space_sequencer.py
@@ -141,16 +141,9 @@ class SEQUENCER_HT_header(Header):
 
         SEQUENCER_MT_editor_menus.draw_collapsible(context, layout)
 
-        if st.view_type in {'SEQUENCER', 'SEQUENCER_PREVIEW'}:
-            layout.separator_spacer()
-            row = layout.row(align=True)
-            row.prop(sequencer_tool_settings, "fit_method", text="")
-            layout.separator_spacer()
+        layout.separator_spacer()
 
         if st.view_type in {'PREVIEW', 'SEQUENCER_PREVIEW'}:
-            if st.view_type == 'PREVIEW':
-                layout.separator_spacer()
-
             layout.prop(st, "display_mode", text="", icon_only=True)
             layout.prop(st, "preview_channels", text="", icon_only=True)



More information about the Bf-blender-cvs mailing list