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:
authorCampbell Barton <ideasman42@gmail.com>2010-07-15 00:19:53 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-07-15 00:19:53 +0400
commiteb4795be57b9f56f2b1679310b2bf1e092e2c70a (patch)
treec5ffc9c641703549aca130a4da17b29752e56d43 /source/blender/editors/sculpt_paint/paint_stroke.c
parente25c0445f51122af4de9715946c9d5b6fd51d21d (diff)
mistake in recent commit, set all axis values.
Diffstat (limited to 'source/blender/editors/sculpt_paint/paint_stroke.c')
-rw-r--r--source/blender/editors/sculpt_paint/paint_stroke.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/sculpt_paint/paint_stroke.c b/source/blender/editors/sculpt_paint/paint_stroke.c
index e373a254c3e..7b8d7c4b7ef 100644
--- a/source/blender/editors/sculpt_paint/paint_stroke.c
+++ b/source/blender/editors/sculpt_paint/paint_stroke.c
@@ -243,8 +243,8 @@ static void make_snap(Snapshot* snap, Brush* brush, ViewContext* vc)
}
else {
snap->brush_map_mode = -1;
- snap->ofs[0]= snap->ofs[0]= snap->ofs[0]= -1;
- snap->size[0]= snap->size[0]= snap->size[0]= -1;
+ snap->ofs[0]= snap->ofs[1]= snap->ofs[2]= -1;
+ snap->size[0]= snap->size[1]= snap->size[2]= -1;
snap->rot = -1;
}