From c754b2239c065a76386df211daf365da6ed56312 Mon Sep 17 00:00:00 2001 From: Antonioya Date: Thu, 29 Nov 2018 22:34:01 +0100 Subject: Fix T58196: Annotation thickness is 0 When the annotation is created by other tools, the thickness was set to 0 --- source/blender/editors/gpencil/annotate_draw.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source') diff --git a/source/blender/editors/gpencil/annotate_draw.c b/source/blender/editors/gpencil/annotate_draw.c index 345a623a234..1ef7e3883da 100644 --- a/source/blender/editors/gpencil/annotate_draw.c +++ b/source/blender/editors/gpencil/annotate_draw.c @@ -803,6 +803,8 @@ static void gp_draw_data_layers( float ink[4]; for (bGPDlayer *gpl = gpd->layers.first; gpl; gpl = gpl->next) { + /* verify never thickness is less than 1 */ + CLAMP_MIN(gpl->thickness, 1.0f); short lthick = gpl->thickness; /* apply layer opacity */ -- cgit v1.2.3