Fix bevel modifier spread value bug.

Was using same field as value, by mistake.
This commit is contained in:
Howard Trickey 2019-01-19 15:56:11 -05:00
parent 8a61ea7296
commit b0dee09a6d
Notes: blender-bot 2023-02-14 04:02:02 +01:00
Referenced by issue #61574, Eevee dynamic paint auto refresh
Referenced by issue #60840, Multires modifier memory leak
Referenced by issue #60690, Cycles GPU render carsh with RX 580
Referenced by issue #60699, EEVEE Diffuse ignores world material
Referenced by issue #60683, Repeatable Software Crash during BAKE Ambient Occlusion operation in Cycles Render Mode
Referenced by issue #60684, Fourth and subsequent vertex color / UV layers displayed black
Referenced by issue #60671, GP weight paint crash when smoothing weights (and other weird behaviour)
Referenced by issue #60672, Shape Key animation breaks basis mesh
Referenced by issue #60677, GP vertex groups get messed up, when deleting a group
Referenced by issue #60678, GP, smoothing a stroke's weights multiple times will lead to unweightable points
1 changed files with 1 additions and 1 deletions

View File

@ -3183,7 +3183,7 @@ static void rna_def_modifier_bevel(BlenderRNA *brna)
RNA_def_property_update(prop, 0, "rna_Modifier_update");
prop = RNA_def_property(srna, "spread", PROP_FLOAT, PROP_DISTANCE);
RNA_def_property_float_sdna(prop, NULL, "value");
RNA_def_property_float_sdna(prop, NULL, "spread");
RNA_def_property_range(prop, 0, FLT_MAX);
RNA_def_property_ui_range(prop, 0.0f, 100.0f, 0.1, 4);
RNA_def_property_ui_text(prop, "Spread", "Spread distance for inner miter arcs");