VSE: Use color picker for color strip.

Reviewed By: billreynish, ISS

Differential Revision: https://developer.blender.org/D6114
This commit is contained in:
Peter Fog 2020-06-01 05:17:20 +02:00 committed by Richard Antalik
parent 102a7ae2d9
commit 42dcb1090b
1 changed files with 2 additions and 1 deletions

View File

@ -1045,7 +1045,8 @@ class SEQUENCER_PT_effect(SequencerButtonsPanel, Panel):
strip_type = strip.type
if strip_type == 'COLOR':
layout.prop(strip, "color")
layout.template_color_picker(strip, "color", value_slider=True, cubic=True)
layout.prop(strip, "color", text="")
elif strip_type == 'WIPE':
col = layout.column()