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:
authorSebastian Parborg <darkdefende@gmail.com>2020-11-03 19:16:48 +0300
committerSebastian Parborg <darkdefende@gmail.com>2020-11-03 19:21:14 +0300
commited4540b799495c1ead7e491696a104baa4a8d1c0 (patch)
treefdab6dfdde323f3266cdf9cb7c6f2331bff81ce5 /source/blender/editors/space_graph/graph_edit.c
parent5deb2d42d957a0992cf5285ddc988e06c3990009 (diff)
Fix paste f-curve modifiers default "Only Active" value
The tooltip implies that this option should be off per default instead of on. Some talking with the animators at the studio and in the animation module confirmed that this seems to be the most logical default.
Diffstat (limited to 'source/blender/editors/space_graph/graph_edit.c')
-rw-r--r--source/blender/editors/space_graph/graph_edit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_graph/graph_edit.c b/source/blender/editors/space_graph/graph_edit.c
index 07af1606226..9523810aa07 100644
--- a/source/blender/editors/space_graph/graph_edit.c
+++ b/source/blender/editors/space_graph/graph_edit.c
@@ -3576,7 +3576,7 @@ void GRAPH_OT_fmodifier_paste(wmOperatorType *ot)
/* Properties */
RNA_def_boolean(
- ot->srna, "only_active", true, "Only Active", "Only paste F-Modifiers on active F-Curve");
+ ot->srna, "only_active", false, "Only Active", "Only paste F-Modifiers on active F-Curve");
RNA_def_boolean(
ot->srna,
"replace",