Cleanup: Make format

This commit is contained in:
Jeroen Bakker
2023-08-29 15:30:13 +02:00
parent 9fba9f418d
commit f0385d7a9e
4 changed files with 11 additions and 4 deletions

View File

@@ -4296,6 +4296,7 @@ def km_3d_view_tool_edit_gpencil_select(params):
{"items": _template_items_tool_select(params, "gpencil.select", extend="toggle")},
)
def km_sequencer_editor_tool_generic_select(params):
return (
"Sequencer Tool: Tweak",
@@ -4304,6 +4305,8 @@ def km_sequencer_editor_tool_generic_select(params):
)
# NOTE: duplicated from `blender_default.py`.
def _template_node_select(*, type, value, select_passthrough):
items = [
("node.select", {"type": type, "value": value},

View File

@@ -252,7 +252,8 @@ static void node_rna(StructRNA *srna)
{
RNA_def_node_enum(srna,
"data_type",
"Data Type", "",
"Data Type",
"",
rna_enum_attribute_type_items,
NOD_inline_enum_accessors(custom1),
CD_PROP_FLOAT,

View File

@@ -277,7 +277,8 @@ static void node_rna(StructRNA *srna)
{
RNA_def_node_enum(srna,
"data_type",
"Data Type", "",
"Data Type",
"",
rna_enum_attribute_type_items,
NOD_inline_enum_accessors(custom1),
CD_PROP_FLOAT,

View File

@@ -142,7 +142,8 @@ static void node_rna(StructRNA *srna)
{
RNA_def_node_enum(srna,
"data_type",
"Data Type", "",
"Data Type",
"",
rna_enum_attribute_type_items,
NOD_storage_enum_accessors(data_type),
CD_PROP_FLOAT,
@@ -150,7 +151,8 @@ static void node_rna(StructRNA *srna)
RNA_def_node_enum(srna,
"domain",
"Domain", "Domain to evaluate the field on",
"Domain",
"Domain to evaluate the field on",
rna_enum_attribute_domain_with_auto_items,
NOD_storage_enum_accessors(domain),
ATTR_DOMAIN_POINT);