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 650f9cfe93
commit d19277c72f
Notes: blender-bot 2024-05-08 11:36:44 +02:00
Referenced by issue #76821, "Use Flow" tooltip still saying "Inflow" when Outflow is chosen
1 changed files with 2 additions and 2 deletions

View File

@ -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")