diff --git a/scripts/startup/bl_ui/space_sequencer.py b/scripts/startup/bl_ui/space_sequencer.py index 5eec977fe71..70adbfcf0d6 100644 --- a/scripts/startup/bl_ui/space_sequencer.py +++ b/scripts/startup/bl_ui/space_sequencer.py @@ -966,7 +966,6 @@ class SEQUENCER_MT_strip_retiming(Menu): layout.operator("sequencer.retiming_segment_speed_set") layout.operator("sequencer.retiming_show", icon="CHECKBOX_HLT") - def draw(self, context): ed = context.scene.sequence_editor if ed.selected_retiming_keys: diff --git a/source/blender/makesrna/intern/rna_main_api.cc b/source/blender/makesrna/intern/rna_main_api.cc index 2f24820b11d..833c97faaba 100644 --- a/source/blender/makesrna/intern/rna_main_api.cc +++ b/source/blender/makesrna/intern/rna_main_api.cc @@ -2041,7 +2041,7 @@ void RNA_def_main_gpencil_legacy(BlenderRNA *brna, PropertyRNA *cprop) func, "do_ui_user", true, "", "Make sure interface does not reference this grease pencil"); } -#ifdef WITH_GREASE_PENCIL_V3 +# ifdef WITH_GREASE_PENCIL_V3 void RNA_def_main_grease_pencil(BlenderRNA *brna, PropertyRNA *cprop) { StructRNA *srna; @@ -2051,7 +2051,7 @@ void RNA_def_main_grease_pencil(BlenderRNA *brna, PropertyRNA *cprop) RNA_def_struct_sdna(srna, "Main"); RNA_def_struct_ui_text(srna, "Main Grease Pencils", "Collection of grease pencils"); } -#endif +# endif void RNA_def_main_movieclips(BlenderRNA *brna, PropertyRNA *cprop) { diff --git a/source/blender/makesrna/intern/rna_ui_api.cc b/source/blender/makesrna/intern/rna_ui_api.cc index b25ba17b886..c0ace2e8fbb 100644 --- a/source/blender/makesrna/intern/rna_ui_api.cc +++ b/source/blender/makesrna/intern/rna_ui_api.cc @@ -791,7 +791,7 @@ static void rna_uiLayout_template_node_operator_asset_menu_items(uiLayout *layou const char *catalog_path) { using namespace blender; - ed::geometry::ui_template_node_operator_asset_menu_items(*layout, *C, StringRef(catalog_path)); + ed::geometry::ui_template_node_operator_asset_menu_items(*layout, *C, StringRef(catalog_path)); } static void rna_uiLayout_template_modifier_asset_menu_items(uiLayout *layout, @@ -799,12 +799,12 @@ static void rna_uiLayout_template_modifier_asset_menu_items(uiLayout *layout, const char *catalog_path) { using namespace blender; - ed::object::ui_template_modifier_asset_menu_items(*layout, *C, StringRef(catalog_path)); + ed::object::ui_template_modifier_asset_menu_items(*layout, *C, StringRef(catalog_path)); } static void rna_uiLayout_template_node_operator_root_items(uiLayout *layout, bContext *C) { - blender::ed::geometry::ui_template_node_operator_asset_root_items(*layout, *C); + blender::ed::geometry::ui_template_node_operator_asset_root_items(*layout, *C); } static int rna_ui_get_rnaptr_icon(bContext *C, PointerRNA *ptr_icon)