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:
authorBastien Montagne <montagne29@wanadoo.fr>2014-09-04 19:12:33 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2014-09-04 19:12:33 +0400
commitf028fe85637ca70251cd8f3c1e1f4030c4df9c2b (patch)
treef3ef95e77891c4d313442181842b58667035909f /add_curve_sapling
parent5adfe7b7a8fb1cfc8de7e24a8ac952c970031ada (diff)
Fix T41711: add trees addons bug.
Just forbid null scale value...
Diffstat (limited to 'add_curve_sapling')
-rw-r--r--add_curve_sapling/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/add_curve_sapling/__init__.py b/add_curve_sapling/__init__.py
index 089251ea..b27dd6a9 100644
--- a/add_curve_sapling/__init__.py
+++ b/add_curve_sapling/__init__.py
@@ -244,7 +244,7 @@ class AddTree(bpy.types.Operator):
size=4, update=update_tree)
scale = FloatProperty(name='Scale',
description='The tree scale (Scale)',
- min=0.0,
+ min=0.001,
default=13.0, update=update_tree)
scaleV = FloatProperty(name='Scale Variation',
description='The variation in the tree scale (ScaleV)',