Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Reynish <billrey@me.com>2019-06-21 14:37:33 +0300
committerWilliam Reynish <billrey@me.com>2019-06-21 14:37:33 +0300
commit8691a58a8076edad89aa26efef6ed1cfe44ca8cf (patch)
tree813841ee86dad4bd7f26796b85cf8e0518d7f3a9 /release
parent99e8346babbd9ac861f8cd35feec316a5be76365 (diff)
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.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_sequencer.py11
1 files changed, 0 insertions, 11 deletions
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