Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPablo Vazquez <contact@pablovazquez.art>2019-03-08 17:30:41 +0300
committerPablo Vazquez <contact@pablovazquez.art>2019-03-08 17:30:51 +0300
commit4831dd5f387927da603ad5a137cd7c014677a3f5 (patch)
tree9c43008ae73e3bc687b053ecab397169c8c84a6e /release
parentfee0593f350bfac41b64c9699010de21cbff2181 (diff)
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.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/properties_render.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/properties_render.py b/release/scripts/startup/bl_ui/properties_render.py
index 522ed0e13bc..e1f84b7d3bf 100644
--- a/release/scripts/startup/bl_ui/properties_render.py
+++ b/release/scripts/startup/bl_ui/properties_render.py
@@ -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):