Fix T41431: Min/Max custom property range mismatch

This commit is contained in:
Campbell Barton 2014-08-14 11:29:22 +10:00
parent f2821e392b
commit 7728ffa16c

@ -1102,13 +1102,13 @@ rna_property = StringProperty(
rna_min = FloatProperty(
name="Min",
default=0.0,
default=-10000.0,
precision=3,
)
rna_max = FloatProperty(
name="Max",
default=1.0,
default=10000.0,
precision=3,
)