[Bf-extensions-cvs] [eb8c240] master: Correct error in own last commit with STL defaults

Campbell Barton noreply at git.blender.org
Fri Apr 10 03:05:03 CEST 2015


Commit: eb8c24066d448533e243106d6c5fa12d18f3e412
Author: Campbell Barton
Date:   Fri Apr 10 11:04:32 2015 +1000
Branches: master
https://developer.blender.org/rBAeb8c24066d448533e243106d6c5fa12d18f3e412

Correct error in own last commit with STL defaults

===================================================================

M	io_mesh_stl/__init__.py

===================================================================

diff --git a/io_mesh_stl/__init__.py b/io_mesh_stl/__init__.py
index 9e69327..2094ef5 100644
--- a/io_mesh_stl/__init__.py
+++ b/io_mesh_stl/__init__.py
@@ -165,7 +165,7 @@ class ExportSTL(Operator, ExportHelper, IOSTLOrientationHelper):
     use_scene_unit = BoolProperty(
             name="Scene Unit",
             description="Apply current scene's unit (as defined by unit scale) to exported data",
-            default=True,
+            default=False,
             )
     ascii = BoolProperty(
             name="Ascii",
@@ -175,7 +175,7 @@ class ExportSTL(Operator, ExportHelper, IOSTLOrientationHelper):
     use_mesh_modifiers = BoolProperty(
             name="Apply Modifiers",
             description="Apply the modifiers before saving",
-            default=False,
+            default=True,
             )



More information about the Bf-extensions-cvs mailing list