Fix T80564: flow particle size is too limiting

Reviewers: sebbas

Differential Revision: https://developer.blender.org/D8888
This commit is contained in:
Jacques Lucke 2020-09-14 12:01:44 +02:00
parent 3ce06a8011
commit 61abd77648
Notes: blender-bot 2023-02-14 03:00:45 +01:00
Referenced by issue #80564, Flow particle_size range is too limiting
1 changed files with 1 additions and 1 deletions

View File

@ -2582,7 +2582,7 @@ static void rna_def_fluid_flow_settings(BlenderRNA *brna)
RNA_def_property_update(prop, NC_OBJECT | ND_MODIFIER, "rna_Fluid_flow_reset");
prop = RNA_def_property(srna, "particle_size", PROP_FLOAT, PROP_NONE);
RNA_def_property_range(prop, 0.1, 20.0);
RNA_def_property_range(prop, 0.1, FLT_MAX);
RNA_def_property_ui_range(prop, 0.5, 5.0, 0.05, 5);
RNA_def_property_ui_text(prop, "Size", "Particle size in simulation cells");
RNA_def_property_update(prop, NC_OBJECT | ND_MODIFIER, "rna_Fluid_flow_reset");