UI: Naming and tooltip for the new high-resolution smoke simplify setting.

* Rename "Use Smoke Highres" to "Use High-resolution Smoke"
* Use 'Display' instead of 'Draw', following the naming conventions in 2.8
* Drop the 'Use' prefix in the UI, a "High-resolution Smoke' checkbox sufficiently communicates what it does.
This commit is contained in:
Pablo Vazquez 2019-03-08 15:30:41 +01:00
parent fee0593f35
commit 4831dd5f38
2 changed files with 2 additions and 2 deletions

View File

@ -632,7 +632,7 @@ class RENDER_PT_simplify_viewport(RenderButtonsPanel, Panel):
col.prop(rd, "simplify_child_particles", text="Max Child Particles")
col = flow.column()
col.prop(rd, "use_simplify_smoke_highres")
col.prop(rd, "use_simplify_smoke_highres", text="High-resolution Smoke")
class RENDER_PT_simplify_render(RenderButtonsPanel, Panel):

View File

@ -5568,7 +5568,7 @@ static void rna_def_scene_render_data(BlenderRNA *brna)
prop = RNA_def_property(srna, "use_simplify_smoke_highres", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_negative_sdna(prop, NULL, "simplify_smoke_ignore_highres", 1);
RNA_def_property_ui_text(prop, "Use Smoke Highres", "Allow drawing high-res smoke in viewport");
RNA_def_property_ui_text(prop, "Use High-resolution Smoke", "Display high-resolution smoke in the viewport");
RNA_def_property_update(prop, NC_OBJECT | ND_DRAW, NULL);
/* Grease Pencil - Simplify Options */