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
path: root/source
diff options
context:
space:
mode:
authorAntony Riakiotakis <kalast@gmail.com>2015-06-15 16:40:40 +0300
committerAntony Riakiotakis <kalast@gmail.com>2015-06-15 16:40:40 +0300
commit05b2ab11092f9f3b501344d161f8dcbfc5b71e70 (patch)
treec2f84fe64f1a287afb292fdc4a5bf9102a141aa1 /source
parent9090d645440ccd55a0b4f4155f485ff7cee0746c (diff)
Fix typo in previous commit
Diffstat (limited to 'source')
-rw-r--r--source/blender/windowmanager/intern/wm_operators.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/windowmanager/intern/wm_operators.c b/source/blender/windowmanager/intern/wm_operators.c
index c69dc9de05b..b9585921c9b 100644
--- a/source/blender/windowmanager/intern/wm_operators.c
+++ b/source/blender/windowmanager/intern/wm_operators.c
@@ -4285,7 +4285,7 @@ static int radial_control_invoke(bContext *C, wmOperator *op, const wmEvent *eve
float value, min, max, step, precision;
value = RNA_property_float_get(&rc->ptr, rc->prop);
- RNA_property_float_ui_range(&rc->ptr, rc->prop, &min, &min, &step, &precision);
+ RNA_property_float_ui_range(&rc->ptr, rc->prop, &min, &max, &step, &precision);
rc->initial_value = value;
rc->min_value = min_ff(value, min);