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-03-05 01:40:23 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2020-03-05 01:41:42 +0300
commit6ab14d971cff27febf527edea6d74e304bfed4ed (patch)
tree9dc918ad7e15abc0788d5be81154ca339fa967ab /release
parentbd0f5fa71f16e5052a82e902579fdd2f53718aa9 (diff)
UI: Fluid: Viewport Display
Cleanup the order of properties and hide sub setting as they were confusing before.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/properties_physics_fluid.py34
1 files changed, 15 insertions, 19 deletions
diff --git a/release/scripts/startup/bl_ui/properties_physics_fluid.py b/release/scripts/startup/bl_ui/properties_physics_fluid.py
index 353223ba771..329f0feaad2 100644
--- a/release/scripts/startup/bl_ui/properties_physics_fluid.py
+++ b/release/scripts/startup/bl_ui/properties_physics_fluid.py
@@ -1222,35 +1222,31 @@ class PHYSICS_PT_viewport_display(PhysicButtonsPanel, Panel):
flow = layout.grid_flow(row_major=True, columns=0, even_columns=True, even_rows=False, align=True)
domain = context.fluid.domain_settings
-
- col = flow.column()
- col.prop(domain, "display_thickness")
-
- col.separator()
-
- col.prop(domain, "slice_method", text="Slicing")
-
slice_method = domain.slice_method
axis_slice_method = domain.axis_slice_method
do_axis_slicing = (slice_method == 'AXIS_ALIGNED')
do_full_slicing = (axis_slice_method == 'FULL')
- col = col.column()
- col.enabled = do_axis_slicing
- col.prop(domain, "axis_slice_method")
+ col = flow.column(align=False)
+ col.prop(domain, "display_thickness")
+ col.prop(domain, "display_interpolation")
+ col.separator()
col = flow.column()
- sub = col.column()
- sub.enabled = not do_full_slicing and do_axis_slicing
- sub.prop(domain, "slice_axis")
- sub.prop(domain, "slice_depth")
+ col.prop(domain, "slice_method", text="Slicing")
- row = col.row()
- row.enabled = do_full_slicing or not do_axis_slicing
- row.prop(domain, "slice_per_voxel")
+ col = col.column()
+ col.active = do_axis_slicing
+ col.prop(domain, "axis_slice_method")
- col.prop(domain, "display_interpolation")
+ if not do_full_slicing and do_axis_slicing:
+ col.prop(domain, "slice_axis")
+ col.prop(domain, "slice_depth")
+
+ col = col.column()
+ col.active = do_full_slicing or not do_axis_slicing
+ col.prop(domain, "slice_per_voxel")
class PHYSICS_PT_viewport_display_color(PhysicButtonsPanel, Panel):