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:
Diffstat (limited to 'source/blender/editors/transform/transform.c')
-rw-r--r--source/blender/editors/transform/transform.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/transform/transform.c b/source/blender/editors/transform/transform.c
index 59626349ac5..d1dbdbb09c7 100644
--- a/source/blender/editors/transform/transform.c
+++ b/source/blender/editors/transform/transform.c
@@ -4706,12 +4706,12 @@ void projectSVData(TransInfo *t, int final)
if (!em)
return;
- if(!(t->settings->uvcalc_flag & UVCALC_TRANSFORM_CORRECT))
+ if (!(t->settings->uvcalc_flag & UVCALC_TRANSFORM_CORRECT))
return;
/* don't do this at all for non-basis shape keys, too easy to
accidentally break uv maps or vertex colors then */
- if(em->bm->shapenr > 1)
+ if (em->bm->shapenr > 1)
return;
BLI_smallhash_init(&visit);