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:
authorDalai Felinto <dfelinto@gmail.com>2016-10-13 03:28:07 +0300
committerDalai Felinto <dfelinto@gmail.com>2016-10-13 03:28:07 +0300
commit8d573aa0ecb6143f239d5bfeb3842c565461c1e4 (patch)
treebdabcfb36cc5776443577340545dff787130847e /source/blender/editors/interface/resources.c
parent2d03edb458bda6f2d3b84ede0d49f8e7b78594f7 (diff)
wrong alpha set for timeline theme (fixup for rBf329ebe3)
Diffstat (limited to 'source/blender/editors/interface/resources.c')
-rw-r--r--source/blender/editors/interface/resources.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/editors/interface/resources.c b/source/blender/editors/interface/resources.c
index 79fa7a7571a..dad5eb70612 100644
--- a/source/blender/editors/interface/resources.c
+++ b/source/blender/editors/interface/resources.c
@@ -2743,6 +2743,10 @@ void init_userdef_do_versions(void)
for (btheme = U.themes.first; btheme; btheme = btheme->next) {
rgba_char_args_set(btheme->tv3d.vertex_bevel, 0, 165, 255, 255);
rgba_char_args_set(btheme->tv3d.edge_bevel, 0, 165, 255, 255);
+
+ /* 3dView Keyframe Indicators */
+ btheme->tv3d.time_keyframe[3] = 0xFF;
+ btheme->tv3d.time_gp_keyframe[3] = 0xFF;
}
}