diff --git a/release/scripts/ui/properties_physics_fluid.py b/release/scripts/ui/properties_physics_fluid.py index 1c371f80f16..177d1c54746 100644 --- a/release/scripts/ui/properties_physics_fluid.py +++ b/release/scripts/ui/properties_physics_fluid.py @@ -65,11 +65,11 @@ class PHYSICS_PT_fluid(PhysicButtonsPanel, bpy.types.Panel): return row.prop(fluid, "type") - if fluid.type not in ('NONE', 'DOMAIN', 'PARTICLE'): + if fluid.type not in ('NONE', 'DOMAIN', 'PARTICLE', 'FLUID'): row.prop(fluid, "use", text="") layout = layout.column() - if fluid.type not in ('NONE', 'DOMAIN', 'PARTICLE'): + if fluid.type not in ('NONE', 'DOMAIN', 'PARTICLE', 'FLUID'): layout.active = fluid.use if fluid.type == 'DOMAIN':