From 8404228aeba33e1def23310361d36c960a6e91bc Mon Sep 17 00:00:00 2001 From: Pablo Vazquez Date: Mon, 16 Jun 2025 22:05:05 +0200 Subject: [PATCH] UI: Rename "HDRI Preview" to "Reference Spheres" `HDRI Preview` is no longer correct since the spheres are also affected by lights in the scene. Rename to `Reference Spheres` and adjust the tooltip accordingly. Related to #140438 Pull Request: https://projects.blender.org/blender/blender/pulls/140487 --- source/blender/makesrna/intern/rna_space.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/source/blender/makesrna/intern/rna_space.cc b/source/blender/makesrna/intern/rna_space.cc index 7902c6b67a0..c65e2d2ec28 100644 --- a/source/blender/makesrna/intern/rna_space.cc +++ b/source/blender/makesrna/intern/rna_space.cc @@ -4866,7 +4866,10 @@ static void rna_def_space_view3d_overlay(BlenderRNA *brna) prop = RNA_def_property(srna, "show_look_dev", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, nullptr, "overlay.flag", V3D_OVERLAY_LOOK_DEV); RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); - RNA_def_property_ui_text(prop, "HDRI Preview", "Show HDRI preview spheres"); + RNA_def_property_ui_text(prop, + "Reference Spheres", + "Show reference spheres with neutral shading that react to lighting to " + "assist in look development"); RNA_def_property_update(prop, NC_SPACE | ND_SPACE_VIEW3D | NS_VIEW3D_SHADING, nullptr); prop = RNA_def_property(srna, "show_wireframes", PROP_BOOLEAN, PROP_NONE);