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:
authorDaniel Salazar <zanqdo@gmail.com>2010-04-29 09:20:24 +0400
committerDaniel Salazar <zanqdo@gmail.com>2010-04-29 09:20:24 +0400
commit58cb999253c1f78272fe677b6a99d46f3561e2f4 (patch)
tree6f3798038aa8063e4babe003ca5c4e036b9e1c5b /source/blender/blenkernel/intern/brush.c
parenta86748adf8689f083847b646c9a13830877ecaa8 (diff)
Newly created brushes will have a lower spacing. Still need to fix some
of the default brushes
Diffstat (limited to 'source/blender/blenkernel/intern/brush.c')
-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 dedf82b6dcc..538012ccc41 100644
--- a/source/blender/blenkernel/intern/brush.c
+++ b/source/blender/blenkernel/intern/brush.c
@@ -75,7 +75,7 @@ Brush *add_brush(const char *name)
brush->rgb[2]= 1.0f;
brush->alpha= 0.2f;
brush->size= 25;
- brush->spacing= 7.5f;
+ brush->spacing= 3.5f;
brush->smooth_stroke_radius= 75;
brush->smooth_stroke_factor= 0.9;
brush->rate= 0.1f;