From 96dffe952bb46273dfa2cc840e5df49631f126eb Mon Sep 17 00:00:00 2001 From: Ton Roosendaal Date: Wed, 17 Apr 2013 13:40:00 +0000 Subject: [PATCH] Bug fix #34974 The open region indicator (with +) didn't do alpha blending properly, so it wasn't visible for any theme color. --- source/blender/editors/interface/interface_draw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ************* */