Commit: c503d1735351a74c43a3ae26c7ff774e940f2a26
Author: Bastien Montagne
Date:   Fri Jul 3 18:56:59 2015 +0200
Branches: master
https://developer.blender.org/rBc503d1735351a74c43a3ae26c7ff774e940f2a26

Fix T45281: IOR Value Slider with "Ctrl" modifier does not increment as 
intended.

Looks like a typo in rB1b8069bd?

===================================================================

M       source/blender/editors/interface/interface_handlers.c

===================================================================

diff --git a/source/blender/editors/interface/interface_handlers.c 
b/source/blender/editors/interface/interface_handlers.c
index e80afa8..3de770a 100644
--- a/source/blender/editors/interface/interface_handlers.c
+++ b/source/blender/editors/interface/interface_handlers.c
@@ -3934,7 +3934,7 @@ static float ui_numedit_apply_snapf(
                /* workaround, too high snapping values */
                /* snapping by 10's for float buttons is quite annoying 
(location, scale...),
                 * but allow for rotations */
-               if ((softrange > 2100.0f)) {
+               if (softrange >= 21.0f) {
                        int unit_type = UI_but_unit_type_get(but);
                        if (!ELEM(unit_type, PROP_UNIT_ROTATION)) {
                                softrange = 20.0f;

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to