Fix T43719: STL Import Script Scale option is strongly limited

Soft min/max are now 1e(-)3, hard ones are now 1e(-)6...
This commit is contained in:
Bastien Montagne 2015-02-20 10:06:07 +01:00
parent c6f198bea6
commit 81539bf9c2
Notes: blender-bot 2023-02-14 19:58:44 +01:00
Referenced by issue #43719, STL Import Script Scale option is strongly limited
1 changed files with 3 additions and 2 deletions

View File

@ -21,7 +21,7 @@
bl_info = {
"name": "STL format",
"author": "Guillaume Bouchard (Guillaum)",
"version": (1, 1),
"version": (1, 1, 1),
"blender": (2, 73, 0),
"location": "File > Import-Export > Stl",
"description": "Import-Export STL files",
@ -93,7 +93,8 @@ class ImportSTL(Operator, ImportHelper, OrientationHelper):
global_scale = FloatProperty(
name="Scale",
min=0.01, max=1000.0,
soft_min=0.001, soft_max=1000.0,
min=1e-6, max=1e6,
default=1.0,
)