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
path: root/source
diff options
context:
space:
mode:
authorTon Roosendaal <ton@blender.org>2013-04-17 17:40:00 +0400
committerTon Roosendaal <ton@blender.org>2013-04-17 17:40:00 +0400
commit96dffe952bb46273dfa2cc840e5df49631f126eb (patch)
treede33b1f281c4033003d02ff3ded04be5f1288d75 /source
parent8c246ddb99d1a9769027ae05a9ad0182ba300deb (diff)
Bug fix #34974
The open region indicator (with +) didn't do alpha blending properly, so it wasn't visible for any theme color.
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/interface/interface_draw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/interface/interface_draw.c b/source/blender/editors/interface/interface_draw.c
index cd2a2161315..86d3fcc1ebf 100644
--- a/source/blender/editors/interface/interface_draw.c
+++ b/source/blender/editors/interface/interface_draw.c
@@ -390,7 +390,7 @@ void uiRoundRect(float minx, float miny, float maxx, float maxy, float rad)
/* (old, used in outliner) plain antialiased filled box */
void uiRoundBox(float minx, float miny, float maxx, float maxy, float rad)
{
- ui_draw_anti_roundbox(GL_POLYGON, minx, miny, maxx, maxy, rad, roundboxtype & UI_RB_ALPHA);
+ ui_draw_anti_roundbox(GL_POLYGON, minx, miny, maxx, maxy, rad, roundboxtype | UI_RB_ALPHA);
}
/* ************** SPECIAL BUTTON DRAWING FUNCTIONS ************* */