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-09 13:48:49 +0300
committerAntony Riakiotakis <kalast@gmail.com>2015-04-09 13:49:06 +0300
commit8a1c444c937cd1326d9e1b1d3302a1617b3c79f8 (patch)
treeddbc1a972c89f0d76f518b193b00b29a0ab9eadb /source/blender/editors/space_action
parent9749b2cb81add7c4fe59ec2ca828cc34369e02b3 (diff)
Disable proportional editing when duplicating keyframes
Diffstat (limited to 'source/blender/editors/space_action')
-rw-r--r--source/blender/editors/space_action/action_ops.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/space_action/action_ops.c b/source/blender/editors/space_action/action_ops.c
index 0f21446cc3d..752863f86e0 100644
--- a/source/blender/editors/space_action/action_ops.c
+++ b/source/blender/editors/space_action/action_ops.c
@@ -106,6 +106,7 @@ void ED_operatormacros_action(void)
WM_operatortype_macro_define(ot, "ACTION_OT_duplicate");
otmacro = WM_operatortype_macro_define(ot, "TRANSFORM_OT_transform");
RNA_enum_set(otmacro->ptr, "mode", TFM_TIME_DUPLICATE);
+ RNA_enum_set(otmacro->ptr, "proportional", PROP_EDIT_OFF);
}
/* ************************** registration - keymaps **********************************/