Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Carlisle <carlisle.b3d@gmail.com>2020-05-19 07:53:59 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2020-05-19 07:53:59 +0300
commit5fa58fb8a2bfbf132055d00dd3491f16f2f8379b (patch)
tree6808df3808b5b90d62bb5b14eaf8c6d9fc310fa8 /release/scripts
parent15bf81268cd4dfa48c1cf72d504a226943ac6e88 (diff)
Fix T76821: Generalize Use Flow Tooltip
Diffstat (limited to 'release/scripts')
-rw-r--r--release/scripts/startup/bl_ui/properties_physics_fluid.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/properties_physics_fluid.py b/release/scripts/startup/bl_ui/properties_physics_fluid.py
index 4b0791a63e6..2c8ed363738 100644
--- a/release/scripts/startup/bl_ui/properties_physics_fluid.py
+++ b/release/scripts/startup/bl_ui/properties_physics_fluid.py
@@ -237,7 +237,7 @@ class PHYSICS_PT_settings(PhysicButtonsPanel, Panel):
col = grid.column()
col.prop(flow, "flow_behavior", expand=False)
if flow.flow_behavior in {'INFLOW', 'OUTFLOW'}:
- col.prop(flow, "use_inflow", text="Use Flow")
+ col.prop(flow, "use_inflow")
col.prop(flow, "subframes", text="Sampling Substeps")