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:
authorMichael Soluyanov <crantisz>2020-02-25 17:09:30 +0300
committerJulian Eisel <eiseljulian@gmail.com>2020-02-25 17:19:19 +0300
commita4a1074f3d2411a562c5cd4d5ebee6d92a1f0a27 (patch)
treee6f3e651349d5095b3c7c5bed1d9db802b997cd9 /release
parent4e9fffc2892601b3b11366f115f342ebeeb026f1 (diff)
UI: Add theme option for time markers line
This patch adds the ability to set colors and alpha of dashed line of Time Markers. That way themes can avoid contrast issues and communicate selection better. See screenshots in D6877. Bumps subversion. Reviewed By: William Reynish, Julian Eisel Differential Revision: https://developer.blender.org/D6877
Diffstat (limited to 'release')
-rw-r--r--release/datafiles/userdef/userdef_default_theme.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/release/datafiles/userdef/userdef_default_theme.c b/release/datafiles/userdef/userdef_default_theme.c
index f5f16183d92..3ad2da99b9f 100644
--- a/release/datafiles/userdef/userdef_default_theme.c
+++ b/release/datafiles/userdef/userdef_default_theme.c
@@ -435,6 +435,8 @@ const bTheme U_theme_default = {
.vertex_select = RGBA(0xff8500ff),
.cframe = RGBA(0x5680c2ff),
.time_scrub_background = RGBA(0x292929e6),
+ .time_marker_line = RGBA(0x00000060),
+ .time_marker_line_selected = RGBA(0xffffff60),
.lastsel_point = RGBA(0xffffffff),
.handle_auto = RGBA(0x909000ff),
.handle_vect = RGBA(0x409030ff),
@@ -526,6 +528,8 @@ const bTheme U_theme_default = {
.strip_select = RGBA(0xff8c00cc),
.cframe = RGBA(0x5680c2ff),
.time_scrub_background = RGBA(0x292929e6),
+ .time_marker_line = RGBA(0x00000060),
+ .time_marker_line_selected = RGBA(0xffffff60),
.ds_channel = RGBA(0x0f2c4d24),
.ds_subchannel = RGBA(0x143e6624),
.ds_ipoline = RGBA(0x94e575cc),
@@ -580,6 +584,8 @@ const bTheme U_theme_default = {
.strip_select = RGBA(0xff8c00ff),
.cframe = RGBA(0x5680c2ff),
.time_scrub_background = RGBA(0x292929e6),
+ .time_marker_line = RGBA(0x00000060),
+ .time_marker_line_selected = RGBA(0xffffff60),
.ds_channel = RGBA(0x5a85b2ff),
.ds_subchannel = RGBA(0x7d98b3ff),
.keyborder = RGBA(0x000000ff),
@@ -628,6 +634,8 @@ const bTheme U_theme_default = {
.bone_pose = RGBA(0x50c8ff50),
.cframe = RGBA(0x5680c2ff),
.time_scrub_background = RGBA(0x292929e6),
+ .time_marker_line = RGBA(0x00000060),
+ .time_marker_line_selected = RGBA(0xffffff60),
.vertex_size = 3,
.outline_width = 1,
.facedot_size = 4,
@@ -909,6 +917,8 @@ const bTheme U_theme_default = {
.strip_select = RGBA(0xff8c00ff),
.cframe = RGBA(0x5680c2ff),
.time_scrub_background = RGBA(0x292929e6),
+ .time_marker_line = RGBA(0x00000060),
+ .time_marker_line_selected = RGBA(0xffffff60),
.handle_auto = RGBA(0x909000ff),
.handle_align = RGBA(0x803060ff),
.handle_sel_auto = RGBA(0xf0ff40ff),