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>2019-05-21 16:59:36 +0300
committerAntonioya <blendergit@gmail.com>2019-05-21 16:59:36 +0300
commit7fe483b3604ff3ad6c731f315cb6b0497aa6391c (patch)
tree91facd36fbdbfbc22b4ff644d470b6397e70d18f /source/blender/blenkernel
parent9ad08c0673a35b170381fb30f610070f6caf7032 (diff)
GPencil: Set samples to 10 for Soft brush
Diffstat (limited to 'source/blender/blenkernel')
-rw-r--r--source/blender/blenkernel/intern/brush.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/brush.c b/source/blender/blenkernel/intern/brush.c
index eef29f241e9..78d965564e6 100644
--- a/source/blender/blenkernel/intern/brush.c
+++ b/source/blender/blenkernel/intern/brush.c
@@ -520,7 +520,7 @@ void BKE_brush_gpencil_presets(bContext *C)
brush->gpencil_settings->draw_angle = 0.0f;
brush->gpencil_settings->draw_angle_factor = 0.0f;
- brush->gpencil_settings->input_samples = 9;
+ brush->gpencil_settings->input_samples = 10;
brush->gpencil_settings->active_smooth = 0.98f;
brush->gpencil_settings->draw_smoothfac = 0.1f;
brush->gpencil_settings->draw_smoothlvl = 1;