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:
-rw-r--r--io_mesh_stl/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/io_mesh_stl/__init__.py b/io_mesh_stl/__init__.py
index 9e693271..2094ef5f 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,
)