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:
authorAntonioya <blendergit@gmail.com>2018-12-21 13:26:58 +0300
committerAntonioya <blendergit@gmail.com>2018-12-21 13:27:24 +0300
commit1b674d70a39ec655aee694feece56414afc57548 (patch)
tree5f45844542bc64c24666a35c86de4296d580fe39 /source/blender/editors/gpencil/gpencil_add_stroke.c
parent36184f739264387a932c21424964d01c33d793b0 (diff)
GP: Cleanup weird thickness scale
This code used old factor, but now this only adds complexity and makes code hard to understand.
Diffstat (limited to 'source/blender/editors/gpencil/gpencil_add_stroke.c')
-rw-r--r--source/blender/editors/gpencil/gpencil_add_stroke.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/gpencil/gpencil_add_stroke.c b/source/blender/editors/gpencil/gpencil_add_stroke.c
index 69bb66edf41..330f7a69e09 100644
--- a/source/blender/editors/gpencil/gpencil_add_stroke.c
+++ b/source/blender/editors/gpencil/gpencil_add_stroke.c
@@ -247,7 +247,7 @@ void ED_gpencil_create_stroke(bContext *C, float mat[4][4])
UNUSED_VARS(frame_color);
/* generate stroke */
- gps = BKE_gpencil_add_stroke(frame_lines, color_black, 175, 3);
+ gps = BKE_gpencil_add_stroke(frame_lines, color_black, 175, 75);
BKE_gpencil_stroke_add_points(gps, data0, 175, mat);
/* update depsgraph */