FCurve Transform: scaling no longer changes hansle types

This matches 3d view and means you can change the amplitude of a curve
while keeping auto-clamped handles.
This commit is contained in:
Campbell Barton 2014-03-01 13:06:07 +11:00
parent f29dadc5ea
commit 6cc5bdc99e
Notes: blender-bot 2023-02-14 10:53:21 +01:00
Referenced by commit a6fb6706a8, Revert "FCurve Transform: scaling no longer changes hansle types"
Referenced by issue #39457, F-Curve Handles cannot be scaled along x-axis in Graph editor
1 changed files with 4 additions and 4 deletions

View File

@ -3935,13 +3935,13 @@ static void createTransGraphEditData(bContext *C, TransInfo *t)
}
/* special hack (must be done after initTransDataCurveHandles(), as that stores handle settings to restore...):
* - Check if we've got entire BezTriple selected and we're scaling/rotating that point,
* - Check if we've got entire BezTriple selected and we're rotating that point,
* then check if we're using auto-handles.
* - If so, change them auto-handles to aligned handles so that handles get affected too
*/
if (ELEM(bezt->h1, HD_AUTO, HD_AUTO_ANIM) &&
ELEM(bezt->h2, HD_AUTO, HD_AUTO_ANIM) &&
ELEM(t->mode, TFM_ROTATION, TFM_RESIZE))
if ((t->mode == TFM_ROTATION) &&
ELEM(bezt->h1, HD_AUTO, HD_AUTO_ANIM) &&
ELEM(bezt->h2, HD_AUTO, HD_AUTO_ANIM))
{
if (hdata && (sel1) && (sel3)) {
bezt->h1 = HD_ALIGN;