From eb8c24066d448533e243106d6c5fa12d18f3e412 Mon Sep 17 00:00:00 2001
From: Campbell Barton <ideasman42@gmail.com>
Date: Fri, 10 Apr 2015 11:04:32 +1000
Subject: [PATCH] Correct error in own last commit with STL defaults

---
 io_mesh_stl/__init__.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/io_mesh_stl/__init__.py b/io_mesh_stl/__init__.py
index 9e6932717..2094ef5f5 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,
             )
 
 
-- 
GitLab