Fix T41711: add trees addons bug.

Just forbid null scale value...
This commit is contained in:
Bastien Montagne 2014-09-04 17:12:33 +02:00
parent 5adfe7b7a8
commit f028fe8563
Notes: blender-bot 2023-02-14 20:04:13 +01:00
Referenced by issue #41711, add trees addons bug
1 changed files with 1 additions and 1 deletions

View File

@ -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)',