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:58:26 +0300
committerAntonioya <blendergit@gmail.com>2019-05-21 16:58:26 +0300
commit9ad08c0673a35b170381fb30f610070f6caf7032 (patch)
treea0744d463a502bbc31eaa942385647b0e1b334bf /source/blender/blenkernel
parentdc67e63acb52eacf2f1451ce5000f4500a8217d6 (diff)
GPencil: Set default Fill brush size to 20
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 8943666c475..eef29f241e9 100644
--- a/source/blender/blenkernel/intern/brush.c
+++ b/source/blender/blenkernel/intern/brush.c
@@ -540,7 +540,7 @@ void BKE_brush_gpencil_presets(bContext *C)
/* Fill brush */
brush = BKE_brush_add_gpencil(bmain, ts, "Fill Area");
- brush->size = 1.0f;
+ brush->size = 20.0f;
brush->gpencil_settings->flag |= GP_BRUSH_ENABLE_CURSOR;
brush->gpencil_settings->draw_sensitivity = 1.0f;
brush->gpencil_settings->fill_leak = 3;