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:
authorCampbell Barton <ideasman42@gmail.com>2015-11-23 13:55:35 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-11-23 13:55:35 +0300
commit47dd7d71337e069c7320338e0031199d9b5fb877 (patch)
tree7aad47903cd07556d0951b1da8c0bec71897d56a /source/blender/editors/space_graph/space_graph.c
parentf997449f841f8229680f9e0f0beed4809b9111ab (diff)
Fix T46841: Thick lines w/ graph visible
Diffstat (limited to 'source/blender/editors/space_graph/space_graph.c')
-rw-r--r--source/blender/editors/space_graph/space_graph.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/editors/space_graph/space_graph.c b/source/blender/editors/space_graph/space_graph.c
index 2f1f72bcf78..200523f591d 100644
--- a/source/blender/editors/space_graph/space_graph.c
+++ b/source/blender/editors/space_graph/space_graph.c
@@ -284,6 +284,8 @@ static void graph_main_area_draw(const bContext *C, ARegion *ar)
glVertex2fv(vec);
glEnd(); // GL_LINE_STRIP
glDisable(GL_BLEND);
+
+ glLineWidth(1.0);
}
/* current frame or vertical component of vertical component of the cursor */
@@ -306,6 +308,8 @@ static void graph_main_area_draw(const bContext *C, ARegion *ar)
glVertex2fv(vec);
glEnd(); // GL_LINE_STRIP
glDisable(GL_BLEND);
+
+ glLineWidth(1.0);
}
else {
/* current frame */