From: Mai Lavelle Date: Tue, 6 Feb 2018 01:15:53 +0000 (-0500) Subject: Fix T54003: Particles - Size and random size not present in "physics" tab in Advanced... X-Git-Tag: v2.80-rc1~1187^2~1816 X-Git-Url: https://git.blender.org/gitweb/gitweb.cgi/blender.git/commitdiff_plain/a3409d3f53f1decb3cbe5c04fd804062dcf2cf49?hp=ce3e0afe5971fbd75e314714f7bcfa79fedcbe7b Fix T54003: Particles - Size and random size not present in "physics" tab in Advanced mode The check to see if `use_advanced_hair` was enabled was actually in two places (render panel `draw` function and physics panel `poll` function). As these properties are only in one place now the check in `draw` isn't needed anymore. Related: T53513, a6c69ca57f661a8538 --- diff --git a/release/scripts/startup/bl_ui/properties_particle.py b/release/scripts/startup/bl_ui/properties_particle.py index 5c16a38a897..b01d1ebbfa3 100644 --- a/release/scripts/startup/bl_ui/properties_particle.py +++ b/release/scripts/startup/bl_ui/properties_particle.py @@ -1086,7 +1086,7 @@ class PARTICLE_PT_render(ParticleButtonsPanel, Panel): col.label(text="") if part.type == 'EMITTER' or \ - (part.render_type in {'OBJECT', 'GROUP'} and part.type == 'HAIR' and not part.use_advanced_hair): + (part.render_type in {'OBJECT', 'GROUP'} and part.type == 'HAIR'): row = layout.row(align=True) row.prop(part, "particle_size") row.prop(part, "size_random", slider=True)