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:
authorPeter Fog <tintwotin>2020-06-01 06:17:20 +0300
committerRichard Antalik <richardantalik@gmail.com>2020-06-01 06:17:20 +0300
commit42dcb1090be01bd7abf9f1a6b0a3753e9bf404af (patch)
treed602d32abc0b527af914c68ee367163e0164adb6 /release
parent102a7ae2d95f4c6869cd77944bf110f5127bfb3d (diff)
VSE: Use color picker for color strip.
Reviewed By: billreynish, ISS Differential Revision: https://developer.blender.org/D6114
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_sequencer.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/space_sequencer.py b/release/scripts/startup/bl_ui/space_sequencer.py
index d30f75c06ff..7cb8c1d7ca2 100644
--- a/release/scripts/startup/bl_ui/space_sequencer.py
+++ b/release/scripts/startup/bl_ui/space_sequencer.py
@@ -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()