From 73b672ee9738ff6c4df66cf5b0cf329f05a91e6a Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Tue, 9 Feb 2016 21:54:44 +1300 Subject: Fix: Transform constraint/helper line drawing had incorrect thickness when GPencil strokes are shown --- source/blender/editors/transform/transform.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source/blender/editors/transform') diff --git a/source/blender/editors/transform/transform.c b/source/blender/editors/transform/transform.c index 307194ca592..29c152c2f6e 100644 --- a/source/blender/editors/transform/transform.c +++ b/source/blender/editors/transform/transform.c @@ -1812,6 +1812,8 @@ static void drawHelpline(bContext *UNUSED(C), int x, int y, void *customdata) static void drawTransformView(const struct bContext *C, ARegion *UNUSED(ar), void *arg) { TransInfo *t = arg; + + glLineWidth(1.0); drawConstraint(t); drawPropCircle(C, t); -- cgit v1.2.3