From 633102c219a18b73c6db180df300cb2facc958aa Mon Sep 17 00:00:00 2001 From: Dan Oak Date: Mon, 13 Oct 2025 13:11:15 +0200 Subject: [PATCH] Fix: add label to View Center property For unknown reasons, this property did not have a label before. Pull Request: https://projects.blender.org/blender/blender/pulls/147712 --- source/blender/makesrna/intern/rna_nodetree.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/makesrna/intern/rna_nodetree.cc b/source/blender/makesrna/intern/rna_nodetree.cc index c8ab631ffa2..00c2f072f4c 100644 --- a/source/blender/makesrna/intern/rna_nodetree.cc +++ b/source/blender/makesrna/intern/rna_nodetree.cc @@ -9436,7 +9436,7 @@ static void rna_def_nodetree(BlenderRNA *brna) RNA_def_property_array(prop, 2); RNA_def_property_float_sdna(prop, nullptr, "view_center"); RNA_def_property_ui_text( - prop, "", "The current location (offset) of the view for this Node Tree"); + prop, "View Center", "The current location (offset) of the view for this Node Tree"); RNA_def_property_clear_flag(prop, PROP_EDITABLE); prop = RNA_def_property(srna, "description", PROP_STRING, PROP_NONE);