From 79ee1b0b5ad630cbd93f6b6fd928f869b09e6665 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 24 Jan 2016 22:06:05 +1100 Subject: [PATCH] More missing calls to glLineWidth --- source/blender/editors/screen/area.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/blender/editors/screen/area.c b/source/blender/editors/screen/area.c index 574ae57b159..0e4dd701a58 100644 --- a/source/blender/editors/screen/area.c +++ b/source/blender/editors/screen/area.c @@ -409,6 +409,7 @@ static void region_draw_azones(ScrArea *sa, ARegion *ar) if (!sa) return; + glLineWidth(1.0f); glEnable(GL_BLEND); glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); @@ -1940,6 +1941,8 @@ void ED_region_panels(const bContext *C, ARegion *ar, const char *context, int c glClear(GL_COLOR_BUFFER_BIT); } + /* reset line width for drawing tabs */ + glLineWidth(1.0f); /* set the view */ UI_view2d_view_ortho(v2d);