Small tweak: Allow DPI for UI to go up 144, exactly double size of 72.

That makes all default icons draw in full unfiltered 32x32 pixel glory!
This commit is contained in:
Ton Roosendaal
2013-01-25 15:44:22 +00:00
parent 08bc601aa5
commit cb19149762

View File

@@ -3320,7 +3320,7 @@ static void rna_def_userdef_system(BlenderRNA *brna)
prop = RNA_def_property(srna, "dpi", PROP_INT, PROP_NONE);
RNA_def_property_int_sdna(prop, NULL, "dpi");
RNA_def_property_range(prop, 48, 128);
RNA_def_property_range(prop, 48, 144);
RNA_def_property_ui_text(prop, "DPI", "Font size and resolution for display");
RNA_def_property_update(prop, 0, "rna_userdef_dpi_update");