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>2017-08-03 15:32:01 +0300
committerJoshua Leung <aligorith@gmail.com>2017-08-11 15:05:56 +0300
commit12c2be8c02517261fa33a0760dc0a93680bab8ab (patch)
tree033014576d90aea21e9c6cc9330db171eda9eb8f /source/blender/editors/space_graph/graph_draw.c
parent572745cc8934686d2b1760bc29dd51ac21fadbfe (diff)
GraphEdit Drawing: Make active F-Curve slightly thicker
Diffstat (limited to 'source/blender/editors/space_graph/graph_draw.c')
-rw-r--r--source/blender/editors/space_graph/graph_draw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_graph/graph_draw.c b/source/blender/editors/space_graph/graph_draw.c
index b92c0a67a14..d917e3b85a2 100644
--- a/source/blender/editors/space_graph/graph_draw.c
+++ b/source/blender/editors/space_graph/graph_draw.c
@@ -1039,7 +1039,7 @@ void graph_draw_curves(bAnimContext *ac, SpaceIpo *sipo, ARegion *ar, View2DGrid
/* set color/drawing style for curve itself */
/* draw active F-Curve thicker than the rest to make it stand out */
if (fcu->flag & FCURVE_ACTIVE) {
- glLineWidth(2.0);
+ glLineWidth(2.5);
}
else {
glLineWidth(1.0);