UI: Fix inconsistency use of uppercase/capitalization

Since VBO stands for vertex buffer object it should always be uppercase.

"Vertex" in "vertex buffer object" should only be capitalized at the
beginning of a sentence.
This commit is contained in:
Pablo Vazquez 2022-08-17 22:23:48 +02:00
parent 646ef6e157
commit f60b47f2c8
2 changed files with 4 additions and 4 deletions

View File

@ -636,7 +636,7 @@ class USERPREF_PT_system_memory(SystemPanel, CenterAlignMixIn, Panel):
layout.separator()
col = layout.column()
col.prop(system, "vbo_time_out", text="Vbo Time Out")
col.prop(system, "vbo_time_out", text="VBO Time Out")
col.prop(system, "vbo_collection_rate", text="Garbage Collection Rate")

View File

@ -5565,8 +5565,8 @@ static void rna_def_userdef_system(BlenderRNA *brna)
RNA_def_property_ui_text(
prop,
"VBO Time Out",
"Time since last access of a GL Vertex buffer object in seconds after which it is freed "
"(set to 0 to keep vbo allocated)");
"Time since last access of a GL vertex buffer object in seconds after which it is freed "
"(set to 0 to keep VBO allocated)");
prop = RNA_def_property(srna, "vbo_collection_rate", PROP_INT, PROP_NONE);
RNA_def_property_int_sdna(prop, NULL, "vbocollectrate");
@ -5574,7 +5574,7 @@ static void rna_def_userdef_system(BlenderRNA *brna)
RNA_def_property_ui_text(
prop,
"VBO Collection Rate",
"Number of seconds between each run of the GL Vertex buffer object garbage collector");
"Number of seconds between each run of the GL vertex buffer object garbage collector");
/* Select */