Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/startup/bl_ui/space_sequencer.py
| Context not available. | |||||
| strip_type = strip.type | strip_type = strip.type | ||||
| if strip_type == 'COLOR': | if strip_type == 'COLOR': | ||||
| layout.prop(strip, "color") | col = layout.column() | ||||
| box = col.box() | |||||
| split = box.split(factor=0.45) | |||||
| col = split.column(align=True) | |||||
| col.separator() | |||||
| col.separator() | |||||
| col.separator() | |||||
| col.label(text="Color") | |||||
| col.prop(strip, "color", text="") | |||||
| split.template_color_picker(strip, "color", value_slider=True, cubic=True) | |||||
| elif strip_type == 'WIPE': | elif strip_type == 'WIPE': | ||||
| col = layout.column() | col = layout.column() | ||||
| Context not available. | |||||