Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2013-04-17 14:01:07 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-04-17 14:01:07 +0400
commit66759c7bd9cc4f564c75568156fe4841afe56727 (patch)
tree0e17fa20f32b2ed3314416c8fdcd83d04f68dfab /object_print3d_utils
parent336ecf7f54301af01dcea62db6f84e8827be19ef (diff)
undo change from yesterday. scale was working correctly
Diffstat (limited to 'object_print3d_utils')
-rw-r--r--object_print3d_utils/export.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/object_print3d_utils/export.py b/object_print3d_utils/export.py
index 889b386d..d0eeca3f 100644
--- a/object_print3d_utils/export.py
+++ b/object_print3d_utils/export.py
@@ -58,7 +58,7 @@ def write_mesh(context, info, report_cb):
obj = obj_base.object
export_format = print_3d.export_format
- global_scale = (1.0 / unit.scale_length) if (unit.system != 'NONE' and print_3d.use_apply_scale) else 1.0
+ global_scale = unit.scale_length if (unit.system != 'NONE' and print_3d.use_apply_scale) else 1.0
path_mode = 'COPY' if print_3d.use_export_texture else 'AUTO'
context_override = context.copy()