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:
authorAaron Carlisle <carlisle.b3d@gmail.com>2020-03-17 23:32:56 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2020-03-17 23:32:56 +0300
commitc9a8de1d704b807460a7a6838db28f7ae2472200 (patch)
tree714d6d32d05770f9c3fb96d0b2931a7177bc6e50 /source/blender
parent3af51cacbf467025c19e6f9c7b57e4c9a5b9ad56 (diff)
Fluid: Correct Tooltip
Diffstat (limited to 'source/blender')
-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 b4543ea4b38..cf992a2533e 100644
--- a/source/blender/makesrna/intern/rna_fluid.c
+++ b/source/blender/makesrna/intern/rna_fluid.c
@@ -1263,7 +1263,7 @@ static void rna_def_fluid_domain_settings(BlenderRNA *brna)
RNA_def_property_ui_text(
prop,
"Threshold",
- "Maximum amount of fluid a cell can contain before it is considered empty");
+ "Minimum amount of fluid a cell can contain before it is considered empty");
RNA_def_property_update(prop, NC_OBJECT | ND_MODIFIER, "rna_Fluid_resetCache");
prop = RNA_def_property(srna, "use_adaptive_domain", PROP_BOOLEAN, PROP_NONE);