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:
authorJacques Lucke <jacques@blender.org>2020-03-18 19:53:49 +0300
committerJacques Lucke <jacques@blender.org>2020-03-18 19:54:17 +0300
commitefb53f5181a75727392b31e08bd8d766e966f04a (patch)
tree950aafc526ea95522ad7d1b76359ada5778f2b39
parentb88ca3e6d113d161dd119bf1cec959c73b797af7 (diff)
Fix T74524: tooltip for smoke dissolve time is backwards
-rw-r--r--source/blender/makesrna/intern/rna_fluid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_fluid.c b/source/blender/makesrna/intern/rna_fluid.c
index cf992a2533e..bd74973b7d7 100644
--- a/source/blender/makesrna/intern/rna_fluid.c
+++ b/source/blender/makesrna/intern/rna_fluid.c
@@ -1361,7 +1361,7 @@ static void rna_def_fluid_domain_settings(BlenderRNA *brna)
RNA_def_property_ui_text(
prop,
"Dissolve Speed",
- "Determine how quickly the smoke dissolves (higher value makes smoke disappear faster)");
+ "Determine how quickly the smoke dissolves (lower value makes smoke disappear faster)");
RNA_def_property_update(prop, NC_OBJECT | ND_MODIFIER, "rna_Fluid_resetCache");
prop = RNA_def_property(srna, "vorticity", PROP_FLOAT, PROP_NONE);