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:
authorClément Foucault <foucault.clem@gmail.com>2018-11-22 18:13:18 +0300
committerClément Foucault <foucault.clem@gmail.com>2018-11-22 18:15:14 +0300
commit3280adc0aa31ad5bccd35ef02da6a48c37b3fbde (patch)
treeecf97852aaa29c4cc2e0f5471063ca57e7be0317
parente815784aa684ccd66a491bbf27370b91ce14f397 (diff)
Fix T57977: VSE: Markers lines get highlighted when using box select
Was caused by a missing uniform.
-rw-r--r--source/blender/editors/animation/anim_markers.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/animation/anim_markers.c b/source/blender/editors/animation/anim_markers.c
index 4d21ed8b5b4..f82250df4d3 100644
--- a/source/blender/editors/animation/anim_markers.c
+++ b/source/blender/editors/animation/anim_markers.c
@@ -416,6 +416,7 @@ static void draw_marker(
else {
immUniformColor4f(0.0f, 0.0f, 0.0f, 0.38f);
}
+ immUniform1i("colors_len", 0); /* "simple" mode */
immUniform1f("dash_width", 6.0f);
immUniform1f("dash_factor", 0.5f);