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:
authorAntony Riakiotakis <kalast@gmail.com>2015-04-02 13:34:35 +0300
committerAntony Riakiotakis <kalast@gmail.com>2015-04-02 13:34:35 +0300
commit146be8e25816c5bcd12a1e0a8b12bed4220befa6 (patch)
tree8b74638fe3326cbf9f7baac4bf3d885d8c200303 /source/blender/editors/transform/transform_generics.c
parent2fc69d11c8a2df89c32a8bb320da2350fff7c8ba (diff)
Fix proportional editing always turned on in graph editor.
Diffstat (limited to 'source/blender/editors/transform/transform_generics.c')
-rw-r--r--source/blender/editors/transform/transform_generics.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/transform/transform_generics.c b/source/blender/editors/transform/transform_generics.c
index 14ae93d1144..0571fc399a6 100644
--- a/source/blender/editors/transform/transform_generics.c
+++ b/source/blender/editors/transform/transform_generics.c
@@ -1321,7 +1321,7 @@ void initTransInfo(bContext *C, TransInfo *t, wmOperator *op, const wmEvent *eve
if (t->flag & T_MODAL) {
if ((t->options & CTX_NO_PET) == 0) {
if (t->spacetype == SPACE_IPO) {
- t->flag |= T_PROP_EDIT;
+ t->flag |= initTransInfo_edit_pet_to_flag(ts->proportional);
}
else if (t->obedit) {
t->flag |= initTransInfo_edit_pet_to_flag(ts->proportional);