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>2012-09-28 18:31:07 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-09-28 18:31:07 +0400
commitb0fb857ef29014b46f125b6e0c175c14e2a3bb59 (patch)
treead6a96de34eedd981ff8dd267b46ceb64b9399ec /source/blender/editors/transform/transform.c
parent71195b247e34432196242b764301043cbef3a162 (diff)
fix [#32684] Shrink/Fatten tool has odd behavior
Diffstat (limited to 'source/blender/editors/transform/transform.c')
-rw-r--r--source/blender/editors/transform/transform.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/transform/transform.c b/source/blender/editors/transform/transform.c
index da84c039bd9..777f239d55c 100644
--- a/source/blender/editors/transform/transform.c
+++ b/source/blender/editors/transform/transform.c
@@ -3909,7 +3909,7 @@ int ShrinkFatten(TransInfo *t, const int UNUSED(mval[2]))
sprintf(str, "Shrink/Fatten: %.4f %s", distance, t->proptext);
}
- t->values[0] = distance;
+ t->values[0] = -distance;
for (i = 0; i < t->total; i++, td++) {
if (td->flag & TD_NOACTION)