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.
This commit is contained in:
Sebastian Parborg 2020-11-03 17:16:48 +01:00
parent 5deb2d42d9
commit ed4540b799
1 changed files with 1 additions and 1 deletions

View File

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