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
path: root/source
diff options
context:
space:
mode:
authorSebastián Barschkis <sebbas@sebbas.org>2021-01-11 14:55:26 +0300
committerSebastián Barschkis <sebbas@sebbas.org>2021-01-11 14:55:33 +0300
commitfe53b6a7fbcd89a82a43921b10e9f13afd742fac (patch)
tree22c932aebfae816e5dd133374dbab7e6c3e3cba5 /source
parentf0ae0f490eaae439961f6d822dcfd77b98a2c838 (diff)
Fluid: Adjusted viscosity strength step size in UI
Step size was too small.
Diffstat (limited to 'source')
-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 9087750f23b..3ea98d610f4 100644
--- a/source/blender/makesrna/intern/rna_fluid.c
+++ b/source/blender/makesrna/intern/rna_fluid.c
@@ -1943,7 +1943,7 @@ static void rna_def_fluid_domain_settings(BlenderRNA *brna)
prop = RNA_def_property(srna, "viscosity_value", PROP_FLOAT, PROP_NONE);
RNA_def_property_range(prop, 0.0, 10.0);
- RNA_def_property_ui_range(prop, 0.0, 5.0, 0.01, 3);
+ RNA_def_property_ui_range(prop, 0.0, 5.0, 1.0, 3);
RNA_def_property_ui_text(prop,
"Strength",
"Viscosity of liquid (higher values result in more viscous fluids, a "