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 /source/blender/blenloader/intern/versioning_userdef.c
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 'source/blender/blenloader/intern/versioning_userdef.c')
-rw-r--r--source/blender/blenloader/intern/versioning_userdef.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/source/blender/blenloader/intern/versioning_userdef.c b/source/blender/blenloader/intern/versioning_userdef.c
index 94ee8d46675..f70988c9277 100644
--- a/source/blender/blenloader/intern/versioning_userdef.c
+++ b/source/blender/blenloader/intern/versioning_userdef.c
@@ -175,6 +175,19 @@ static void do_versions_theme(const UserDef *userdef, bTheme *btheme)
FROM_DEFAULT_V4_UCHAR(space_info.info_operator_text);
}
+ if (!USER_VERSION_ATLEAST(283, 5)) {
+ FROM_DEFAULT_V4_UCHAR(space_graph.time_marker_line);
+ FROM_DEFAULT_V4_UCHAR(space_action.time_marker_line);
+ FROM_DEFAULT_V4_UCHAR(space_nla.time_marker_line);
+ FROM_DEFAULT_V4_UCHAR(space_sequencer.time_marker_line);
+ FROM_DEFAULT_V4_UCHAR(space_clip.time_marker_line);
+ FROM_DEFAULT_V4_UCHAR(space_graph.time_marker_line_selected);
+ FROM_DEFAULT_V4_UCHAR(space_action.time_marker_line_selected);
+ FROM_DEFAULT_V4_UCHAR(space_nla.time_marker_line_selected);
+ FROM_DEFAULT_V4_UCHAR(space_sequencer.time_marker_line_selected);
+ FROM_DEFAULT_V4_UCHAR(space_clip.time_marker_line_selected);
+ }
+
/**
* Versioning code until next subversion bump goes here.
*