Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans Goudey <h.goudey@me.com>2021-03-09 06:12:26 +0300
committerHans Goudey <h.goudey@me.com>2021-03-09 06:14:19 +0300
commit55fe91b83b932b8acf4395b33b3596521a6243e9 (patch)
tree49333ecbdd7855e0288a9ce9a6ea17fbc67e72db /source/blender/makesrna/intern
parent94d826f6d6169cab3e1eade4d421e01f438c0848 (diff)
Progress on cylinder node
Diffstat (limited to 'source/blender/makesrna/intern')
-rw-r--r--source/blender/makesrna/intern/rna_nodetree.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/source/blender/makesrna/intern/rna_nodetree.c b/source/blender/makesrna/intern/rna_nodetree.c
index a001bf33bb6..6f222e8da1b 100644
--- a/source/blender/makesrna/intern/rna_nodetree.c
+++ b/source/blender/makesrna/intern/rna_nodetree.c
@@ -9215,12 +9215,7 @@ static void def_geo_mesh_cylinder(StructRNA *srna)
prop = RNA_def_property(srna, "fill_type", PROP_ENUM, PROP_NONE);
RNA_def_property_enum_items(prop, rna_node_geometry_mesh_circle_fill_type_items);
- RNA_def_property_ui_text(prop, "Fill Type Top", "");
- RNA_def_property_update(prop, NC_NODE | NA_EDITED, "rna_Node_update");
-
- prop = RNA_def_property(srna, "fill_type", PROP_ENUM, PROP_NONE);
- RNA_def_property_enum_items(prop, rna_node_geometry_mesh_circle_fill_type_items);
- RNA_def_property_ui_text(prop, "Fill Type Bottom", "");
+ RNA_def_property_ui_text(prop, "Fill Type", "");
RNA_def_property_update(prop, NC_NODE | NA_EDITED, "rna_Node_update");
}