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
This commit is contained in:
Harley Acheson
2024-06-23 00:35:45 +02:00
committed by Harley Acheson
parent c295c9f818
commit cc9bd758c9

View File

@@ -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);