From 75c57e924feb64fb107cb154c816dfb2c9a101d3 Mon Sep 17 00:00:00 2001 From: Hans Goudey Date: Fri, 8 Sep 2023 09:48:59 -0400 Subject: [PATCH] UI: Rename Geometry Nodes "Show Node Group Selector" property Skip "Selector" in the name. The fact that this influences the UI is implied by "Show." That makes the "Selector" word redundant. --- source/blender/makesrna/intern/rna_modifier.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/makesrna/intern/rna_modifier.cc b/source/blender/makesrna/intern/rna_modifier.cc index f2952e0b7ef..2b5bfcbcc7c 100644 --- a/source/blender/makesrna/intern/rna_modifier.cc +++ b/source/blender/makesrna/intern/rna_modifier.cc @@ -7078,7 +7078,7 @@ static void rna_def_modifier_nodes(BlenderRNA *brna) prop = RNA_def_property(srna, "show_group_selector", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_negative_sdna( prop, nullptr, "flag", NODES_MODIFIER_HIDE_DATABLOCK_SELECTOR); - RNA_def_property_ui_text(prop, "Show Node Group Selector", ""); + RNA_def_property_ui_text(prop, "Show Node Group", ""); RNA_def_property_flag(prop, PROP_NO_DEG_UPDATE); RNA_def_property_update(prop, NC_OBJECT | ND_MODIFIER, nullptr);