Fix T42587 rotation curves not setting jump to cursor position

correctly.
This commit is contained in:
Antonis Ryakiotakis 2014-11-13 15:03:44 +01:00
parent f82f1513e0
commit 284726baec
Notes: blender-bot 2023-02-14 09:49:34 +01:00
Referenced by issue #42587, Graph editor snap tool operator problem
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}