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
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2020-05-15 15:48:00 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-05-15 16:13:57 +0300
commitfe0036c586d334a17a0b6bc008790749f58273be (patch)
tree7d687319527c12a2b284b4872771773e6a6841af /source/blender/editors/space_graph
parent0a32f6c8686c6a14a052f5b254655b3b69a581e3 (diff)
Fix T76563: Transforming an auto-aligned point won't set it aligned
When local origins are used or a single control point is selected, change the handle types from auto to aligned.
Diffstat (limited to 'source/blender/editors/space_graph')
-rw-r--r--source/blender/editors/space_graph/graph_buttons.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_graph/graph_buttons.c b/source/blender/editors/space_graph/graph_buttons.c
index 8c931a0c4a3..d1feab6f24b 100644
--- a/source/blender/editors/space_graph/graph_buttons.c
+++ b/source/blender/editors/space_graph/graph_buttons.c
@@ -294,7 +294,7 @@ static void graphedit_activekey_handles_cb(bContext *C, void *fcu_ptr, void *bez
bezt->h2 = HD_ALIGN;
}
else {
- BKE_nurb_bezt_handle_test(bezt, SELECT, true);
+ BKE_nurb_bezt_handle_test(bezt, SELECT, true, false);
}
/* now call standard updates */