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>2015-04-10 04:04:32 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-04-10 04:04:32 +0300
commiteb8c24066d448533e243106d6c5fa12d18f3e412 (patch)
treed29774856077203e02fbfcc2e0bce405d98f1ff7
parent37d9aa7535923f39d8d7d45b797633f0f92a0679 (diff)
Correct error in own last commit with STL defaults
-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,
)