From 3344a271f4c29de9e082a9036ecee675767c106e Mon Sep 17 00:00:00 2001 From: Aaron Carlisle Date: Mon, 7 Aug 2023 02:52:30 +0200 Subject: [PATCH] UI: Rename 'Resolution %' to 'Resolution Scale' This is not used in the UI except for the tooltip. UI elements should be given full names rather than relying on symbols. This improves the API docs as well as makes it a more understandable tooltip message. Signed-off-by: Aaron Carlisle --- source/blender/makesrna/intern/rna_scene.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/makesrna/intern/rna_scene.cc b/source/blender/makesrna/intern/rna_scene.cc index f694bbd4225..1fc521f98a1 100644 --- a/source/blender/makesrna/intern/rna_scene.cc +++ b/source/blender/makesrna/intern/rna_scene.cc @@ -6420,7 +6420,7 @@ static void rna_def_scene_render_data(BlenderRNA *brna) RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); RNA_def_property_range(prop, 1, SHRT_MAX); RNA_def_property_ui_range(prop, 1, 100, 10, 1); - RNA_def_property_ui_text(prop, "Resolution %", "Percentage scale for render resolution"); + RNA_def_property_ui_text(prop, "Resolution Scale", "Percentage scale for render resolution"); RNA_def_property_update(prop, NC_SCENE | ND_RENDER_OPTIONS, "rna_SceneSequencer_update"); prop = RNA_def_property(srna, "preview_pixel_size", PROP_ENUM, PROP_NONE); -- 2.30.2