Fluid: Added missing outflow object type to enable / disable flow flag

There is no reason to not include outflow objects here too.
This commit is contained in:
Sebastián Barschkis 2020-04-19 19:43:05 +02:00
parent c1c97c3d4a
commit 6c4a7e0ac3

@ -236,8 +236,8 @@ class PHYSICS_PT_settings(PhysicButtonsPanel, Panel):
col = grid.column()
col.prop(flow, "flow_behavior", expand=False)
if flow.flow_behavior in {'INFLOW'}:
col.prop(flow, "use_inflow", text="Use Inflow")
if flow.flow_behavior in {'INFLOW', 'OUTFLOW'}:
col.prop(flow, "use_inflow", text="Use Flow")
col.prop(flow, "subframes", text="Sampling Substeps")