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:
authorDaniel Genrich <daniel.genrich@gmx.net>2010-08-10 17:06:45 +0400
committerDaniel Genrich <daniel.genrich@gmx.net>2010-08-10 17:06:45 +0400
commitf483834f13eb7530b927029f67678c0f324e4224 (patch)
tree0eb1c2120fc552387d1357d7de9cb70ead2ed461
parentc0e39df6ac42d137fd51eeea463aace856bf97d4 (diff)
Smoke:
- Fixing UI glitch so that range and UI range now matches - Increased max to 400 secs (at 25 FPS) to allow more artistic freedom
-rw-r--r--source/blender/makesrna/intern/rna_smoke.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_smoke.c b/source/blender/makesrna/intern/rna_smoke.c
index f921595304d..45dc7fadd94 100644
--- a/source/blender/makesrna/intern/rna_smoke.c
+++ b/source/blender/makesrna/intern/rna_smoke.c
@@ -205,8 +205,8 @@ static void rna_def_smoke_domain_settings(BlenderRNA *brna)
prop= RNA_def_property(srna, "dissolve_speed", PROP_INT, PROP_NONE);
RNA_def_property_int_sdna(prop, NULL, "diss_speed");
- RNA_def_property_range(prop, 1.0, 100.0);
- RNA_def_property_ui_range(prop, 1.0, 1000.0, 1, 0);
+ RNA_def_property_range(prop, 1.0, 10000.0);
+ RNA_def_property_ui_range(prop, 1.0, 10000.0, 1, 0);
RNA_def_property_ui_text(prop, "Dissolve Speed", "Dissolve Speed");
RNA_def_property_update(prop, 0, NULL);