[Bf-blender-cvs] [ed4540b7994] master: Fix paste f-curve modifiers default "Only Active" value

Sebastian Parborg noreply at git.blender.org
Tue Nov 3 17:21:18 CET 2020


Commit: ed4540b799495c1ead7e491696a104baa4a8d1c0
Author: Sebastian Parborg
Date:   Tue Nov 3 17:16:48 2020 +0100
Branches: master
https://developer.blender.org/rBed4540b799495c1ead7e491696a104baa4a8d1c0

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.

===================================================================

M	source/blender/editors/space_graph/graph_edit.c

===================================================================

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",



More information about the Bf-blender-cvs mailing list