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:
authorJoshua Leung <aligorith@gmail.com>2006-12-06 06:04:34 +0300
committerJoshua Leung <aligorith@gmail.com>2006-12-06 06:04:34 +0300
commit34ea39a48fdc194b5b2e3654ce30cf6c38c1dcaa (patch)
tree03cfaf74cdbb868306349030221614d8e07f1cfa /source/blender/src/drawaction.c
parent6c138fc6a9117e88e65ff990443f2fecaa6d9550 (diff)
== Action Editor ==
Fix for a few alpha problems with lock icons when markers are drawn
Diffstat (limited to 'source/blender/src/drawaction.c')
-rw-r--r--source/blender/src/drawaction.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/src/drawaction.c b/source/blender/src/drawaction.c
index c8b7198f00a..71cf47348fd 100644
--- a/source/blender/src/drawaction.c
+++ b/source/blender/src/drawaction.c
@@ -227,6 +227,7 @@ static void draw_action_channel_names(bAction *act)
for (chan=act->chanbase.first; chan; chan=chan->next){
if((chan->flag & ACHAN_HIDDEN)==0) {
glEnable(GL_BLEND);
+ glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA) ;
/* draw backing strip behind action channel name */
BIF_ThemeColorShade(TH_HEADER, 20);