main sync #3

Merged
Patrick Busch merged 318 commits from blender/blender:main into main 2023-03-17 15:52:21 +01:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 097492b326 - Show all commits

View File

@ -248,7 +248,7 @@ class GRAPH_MT_key(Menu):
layout.separator()
layout.operator_menu_enum("graph.keyframe_insert", "type")
layout.operator_menu_enum("graph.fmodifier_add", "type")
layout.operator_menu_enum("graph.fmodifier_add", "type").only_active = False
layout.operator("graph.sound_bake")
layout.separator()

View File

@ -2853,7 +2853,7 @@ void GRAPH_OT_fmodifier_add(wmOperatorType *ot)
ot->prop = prop;
RNA_def_boolean(
ot->srna, "only_active", 1, "Only Active", "Only add F-Modifier to active F-Curve");
ot->srna, "only_active", false, "Only Active", "Only add F-Modifier to active F-Curve");
}
/** \} */