[Bf-blender-cvs] [8a94903c090] master: VSE: Remove decorate from Expand and Mute in Modifiers

Peter Fog noreply at git.blender.org
Mon Apr 27 00:26:40 CEST 2020


Commit: 8a94903c090e6541c5d11d60c6cf23b8964f1dd4
Author: Peter Fog
Date:   Mon Apr 27 00:12:35 2020 +0200
Branches: master
https://developer.blender.org/rB8a94903c090e6541c5d11d60c6cf23b8964f1dd4

VSE: Remove decorate from Expand and Mute in Modifiers

Remove decorate from Expand and Mute in VSE Modifiers,
since these elements aren't using decorate elsewhere.

Reviewed By: billreynish

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

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

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 0e2af8f8f2f..e4539ec7ca7 100644
--- a/release/scripts/startup/bl_ui/space_sequencer.py
+++ b/release/scripts/startup/bl_ui/space_sequencer.py
@@ -2083,10 +2083,12 @@ class SEQUENCER_PT_modifiers(SequencerButtonsPanel, Panel):
             box = layout.box()
 
             row = box.row()
+            row.use_property_decorate = False
             row.prop(mod, "show_expanded", text="", emboss=False)
             row.prop(mod, "name", text="")
 
             row.prop(mod, "mute", text="")
+            row.use_property_decorate = True
 
             sub = row.row(align=True)
             props = sub.operator("sequencer.strip_modifier_move", text="", icon='TRIA_UP')



More information about the Bf-blender-cvs mailing list