Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2010-08-29 19:53:37 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-08-29 19:53:37 +0400
commitde2e58ca497aa3dc4c0614ee3c43739bdd5f8706 (patch)
tree7c45036f61a693c9af6b345697a44f53b5410d33
parent69949d730bb635c58e12bbb9e23bead859468f8f (diff)
fix for the weight range for curve set weight operator
-rw-r--r--source/blender/editors/curve/editcurve.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/curve/editcurve.c b/source/blender/editors/curve/editcurve.c
index 44d3fdb2189..1097b55edbc 100644
--- a/source/blender/editors/curve/editcurve.c
+++ b/source/blender/editors/curve/editcurve.c
@@ -1850,7 +1850,7 @@ void CURVE_OT_spline_weight_set(wmOperatorType *ot)
ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
/* properties */
- RNA_def_float_factor(ot->srna, "weight", 1.0f, 0.0f, 1.0f, "Weight", "", 0.0f, 1.0f);
+ RNA_def_float_factor(ot->srna, "weight", 1.0f, 0.0f, 100.0f, "Weight", "", 0.0f, 100.0f);
}
/******************* set radius operator ******************/