[Bf-blender-cvs] [8691a58a807] master: UI: Add decorators to Sequencer sidebar

William Reynish noreply at git.blender.org
Fri Jun 21 13:37:35 CEST 2019


Commit: 8691a58a8076edad89aa26efef6ed1cfe44ca8cf
Author: William Reynish
Date:   Fri Jun 21 13:37:33 2019 +0200
Branches: master
https://developer.blender.org/rB8691a58a8076edad89aa26efef6ed1cfe44ca8cf

UI: Add decorators to Sequencer sidebar

These items you are very likely to want to animate.
Only adding for panels where it makes sense, so not Time or Source.

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

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 3be11cbbdfa..77eb48d7a0b 100644
--- a/release/scripts/startup/bl_ui/space_sequencer.py
+++ b/release/scripts/startup/bl_ui/space_sequencer.py
@@ -842,7 +842,6 @@ class SEQUENCER_PT_adjust_transform_offset(SequencerButtonsPanel, Panel):
         strip = act_strip(context)
         layout = self.layout
         layout.use_property_split = True
-        layout.use_property_decorate = False
 
         layout.active = strip.use_translation and (not strip.mute)
 
@@ -870,7 +869,6 @@ class SEQUENCER_PT_adjust_transform_crop(SequencerButtonsPanel, Panel):
         strip = act_strip(context)
         layout = self.layout
         layout.use_property_split = True
-        layout.use_property_decorate = False
 
         layout.active = strip.use_crop and (not strip.mute)
 
@@ -904,7 +902,6 @@ class SEQUENCER_PT_effect(SequencerButtonsPanel, Panel):
     def draw(self, context):
         layout = self.layout
         layout.use_property_split = True
-        layout.use_property_decorate = False
 
         strip = act_strip(context)
 
@@ -1175,7 +1172,6 @@ class SEQUENCER_PT_sound(SequencerButtonsPanel, Panel):
     def draw(self, context):
         layout = self.layout
         layout.use_property_split = True
-        layout.use_property_decorate = False
 
         strip = act_strip(context)
         sound = strip.sound
@@ -1221,7 +1217,6 @@ class SEQUENCER_PT_scene(SequencerButtonsPanel, Panel):
     def draw(self, context):
         layout = self.layout
         layout.use_property_split = True
-        layout.use_property_decorate = False
 
         strip = act_strip(context)
 
@@ -1271,7 +1266,6 @@ class SEQUENCER_PT_mask(SequencerButtonsPanel, Panel):
     def draw(self, context):
         layout = self.layout
         layout.use_property_split = True
-        layout.use_property_decorate = False
 
         strip = act_strip(context)
 
@@ -1441,7 +1435,6 @@ class SEQUENCER_PT_adjust_sound(SequencerButtonsPanel, Panel):
     def draw(self, context):
         layout = self.layout
         layout.use_property_split = True
-        layout.use_property_decorate = False
 
         st = context.space_data
         strip = act_strip(context)
@@ -1475,7 +1468,6 @@ class SEQUENCER_PT_adjust_comp(SequencerButtonsPanel, Panel):
     def draw(self, context):
         layout = self.layout
         layout.use_property_split = True
-        layout.use_property_decorate = False
 
         strip = act_strip(context)
 
@@ -1553,7 +1545,6 @@ class SEQUENCER_PT_adjust_video(SequencerButtonsPanel, Panel):
         layout = self.layout
 
         layout.use_property_split = True
-        layout.use_property_decorate = False
 
         col = layout.column()
 
@@ -1602,7 +1593,6 @@ class SEQUENCER_PT_adjust_color(SequencerButtonsPanel, Panel):
     def draw(self, context):
         layout = self.layout
         layout.use_property_split = True
-        layout.use_property_decorate = False
 
         strip = act_strip(context)
 
@@ -1894,7 +1884,6 @@ class SEQUENCER_PT_modifiers(SequencerButtonsPanel, Panel):
     def draw(self, context):
         layout = self.layout
         layout.use_property_split = True
-        layout.use_property_decorate = False
 
         strip = act_strip(context)
         ed = context.scene.sequence_editor



More information about the Bf-blender-cvs mailing list