Sequencer text strip color options

D1930 by @NiKoZLaB
This commit is contained in:
Campbell Barton
2016-04-27 15:49:13 +10:00
parent 01cdd22a52
commit 0912bffb84
5 changed files with 42 additions and 3 deletions

View File

@@ -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")