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:
authorSergey Sharybin <sergey.vfx@gmail.com>2019-12-17 13:13:00 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-12-17 13:13:00 +0300
commit4b62d989847b821f35443eb3704a5b8e78a5e3c2 (patch)
treeccfe24f8ddab0a9529c1e6ab87b7b74538969b27
parentbde06da223ab214b007eb5c717a078fa3718e898 (diff)
Fluid: Fix python script after refactor
Missing part in 2564e2a2ad9.
-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 25780ab9ad2..6b0dd7ac36f 100644
--- a/release/scripts/startup/bl_ui/properties_physics_fluid.py
+++ b/release/scripts/startup/bl_ui/properties_physics_fluid.py
@@ -163,7 +163,7 @@ class PHYSICS_PT_settings(PhysicButtonsPanel, Panel):
col = flow.column()
col.prop(domain, "use_adaptive_timesteps")
col1 = col.column(align=True)
- col1.enabled = domain.use_adaptive_stepping
+ col1.enabled = domain.use_adaptive_timesteps
col1.prop(domain, "timesteps_max", text="Timesteps Maximum")
col1.prop(domain, "timesteps_min", text="Minimum")