Commit: 284726baeccd1442ed4ecd5908012e38be59dfc0
Author: Antony Riakiotakis
Date:   Thu Nov 13 15:03:44 2014 +0100
Branches: master
https://developer.blender.org/rB284726baeccd1442ed4ecd5908012e38be59dfc0

Fix T42587 rotation curves not setting jump to cursor position
correctly.

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

M       source/blender/editors/space_graph/graph_edit.c

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

diff --git a/source/blender/editors/space_graph/graph_edit.c 
b/source/blender/editors/space_graph/graph_edit.c
index c829892..53beb5e 100644
--- a/source/blender/editors/space_graph/graph_edit.c
+++ b/source/blender/editors/space_graph/graph_edit.c
@@ -1888,7 +1888,7 @@ static int graphkeys_framejump_exec(bContext *C, 
wmOperator *UNUSED(op))
 
                ked.f1 += current_ked.f1;
                ked.i1 += current_ked.i1;
-               ked.f2 += current_ked.f2 / unit_scale;
+               ked.f2 += current_ked.f2 * unit_scale;
                ked.i2 += current_ked.i2;
        }

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

Reply via email to