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:
Diffstat (limited to 'release/scripts/startup/bl_ui/space_sequencer.py')
-rw-r--r--release/scripts/startup/bl_ui/space_sequencer.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/space_sequencer.py b/release/scripts/startup/bl_ui/space_sequencer.py
index 233145819e7..65fd0a43619 100644
--- a/release/scripts/startup/bl_ui/space_sequencer.py
+++ b/release/scripts/startup/bl_ui/space_sequencer.py
@@ -668,7 +668,15 @@ class SEQUENCER_PT_effect(SequencerButtonsPanel, Panel):
col = layout.column()
col.prop(strip, "text")
col.prop(strip, "font_size")
- col.prop(strip, "use_shadow")
+
+ row = col.row()
+ row.prop(strip, "color")
+ row = col.row()
+ row.prop(strip, "use_shadow")
+ rowsub = row.row()
+ rowsub.active = strip.use_shadow
+ rowsub.prop(strip, "shadow_color", text="")
+
col.prop(strip, "align_x")
col.prop(strip, "align_y")
col.prop(strip, "location")