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/object/object_edit.c')
-rw-r--r--source/blender/editors/object/object_edit.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/source/blender/editors/object/object_edit.c b/source/blender/editors/object/object_edit.c
index 1626a074c42..11ceda8a61f 100644
--- a/source/blender/editors/object/object_edit.c
+++ b/source/blender/editors/object/object_edit.c
@@ -729,9 +729,15 @@ static void copy_texture_space(Object *to, Object *ob)
memcpy(poin1, poin2, 9*sizeof(float)); /* this was noted in DNA_mesh, curve, mball */
- if(to->type==OB_MESH) ;
- else if(to->type==OB_MBALL) tex_space_mball(to);
- else tex_space_curve(to->data);
+ if(to->type==OB_MESH) {
+ /* pass */
+ }
+ else if (to->type == OB_MBALL) {
+ tex_space_mball(to);
+ }
+ else {
+ tex_space_curve(to->data);
+ }
}