From cc9bd758c91cba57747ea7505411076fbeb1b4cd Mon Sep 17 00:00:00 2001 From: Harley Acheson Date: Sun, 23 Jun 2024 00:35:45 +0200 Subject: [PATCH] UI: Increase in Maximum Resolution Scale Small (50%) increase in the maximum values for UI resolution scale. UI max changing from 2 to 3, property max from 4 to 6. Not only to mark the change to improved icons at larger scale, but also to help with testing and for better screen captures. Pull Request: https://projects.blender.org/blender/blender/pulls/123615 --- source/blender/makesrna/intern/rna_userdef.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/blender/makesrna/intern/rna_userdef.cc b/source/blender/makesrna/intern/rna_userdef.cc index 12c4233b14a..67705d2dc7c 100644 --- a/source/blender/makesrna/intern/rna_userdef.cc +++ b/source/blender/makesrna/intern/rna_userdef.cc @@ -4970,8 +4970,8 @@ static void rna_def_userdef_view(BlenderRNA *brna) prop = RNA_def_property(srna, "ui_scale", PROP_FLOAT, PROP_NONE); RNA_def_property_ui_text( prop, "UI Scale", "Changes the size of the fonts and widgets in the interface"); - RNA_def_property_range(prop, 0.25f, 4.0f); - RNA_def_property_ui_range(prop, 0.5f, 2.0f, 1, 2); + RNA_def_property_range(prop, 0.25f, 6.0f); + RNA_def_property_ui_range(prop, 0.5f, 3.0f, 1, 2); RNA_def_property_update(prop, 0, "rna_userdef_gpu_update"); prop = RNA_def_property(srna, "ui_line_width", PROP_ENUM, PROP_NONE);